Jump to content

Subforums

  1. With any e-commerce online business, technical effects will doubtless occur. Even if the majority of your business is off-line, many people prefer on line product and service support. Customers need their questions answered quickly and personnel need a way to effectively manage their work. With the mainstream exercise of the online customers came a need for smarter, more reliable and, more perceivable customer living. iKode Helpdesk Occured! iKode Helpdesk is a PHP help desk software that runs with a MySQL database.It is used to provide support to an online community, by adding a comprehensive FAQ section,solving tickets,and interacting with users via emails.

    • 1 reply
    • 5.6k views
  2. A good PHP Helpdesk software also provides a useful management support services, it is also an email management software. This would do help to manage email clients and make the administrators have a better understanding of customers' needs. In the back-end of a PHP Helpdesk software, the administrator can see the user information clearly so that to make an effective marketing campaign. At the same time, the administrator can still see the communication between the staff and clients, that is certainly can enhance the quality of service. When you choose a help desk software, you should consider how to use it firstly. It should be easy to install and uninstall. Some help…

    • 0 replies
    • 2.2k views
  3. Started by Aryacooldude,

    Q:-What is a PHP File? Ans:- PHP files may contain text, HTML tags and scripts. PHP files are returned to the browser as plain HTML. PHP files have a file extension of ".php", ".php3", or ".phtml". Q:-What is PHP relation to PHP/FI? Ans:- PHP is the successor to PHP/FI 2.0 Q:-What is the difference between PHP and JavaScript? Ans:- javascript is a client side scripting language, so javascript can make popups and other things happens on someone’s PC. While PHP is server side scripting language so it does every stuff with the server. Q:-What does a special set of tags do in PHP? Ans:-The output is displayed directly to the browser. Q:-What’s the differen…

    • 3 replies
    • 4.5k views
  4. Started by Die2mrw007,

    LEARN HOW TO WRITE PHP SCRIPTS - INTRODUCTION PHP (PHP: Hypertext Preprocessor) is a server-side scripting language which is free and widely used in web development: it allows you to build dynamic websites with the use of dabatases such as MySql databases (which can be queried by using SQL commands from your PHP scripts). PHP is compatible with a large number of servers (e.g. Apache) and platforms (Linux, Windows, Unix), is an open source software, and is very intuitive and easy to learn. The purpose of this series of tutorials on PHP is to introduce you to the PHP language. Another series of tutorials will later be dedicated to the use of MySql databases and the SQ…

    • 3 replies
    • 2.9k views
  5. Started by Die2mrw007,

    The names of PHP variables must follow a certain number of rules: PHP variables must start with the symbol $, followed by a letter or by an underscore. PHP variables can contain alphanumeric symbols (A-Z, a-z, 0-9) and underscores (_) only (they cannot contain spaces). PHP variables are case sensitive, meaning that the variable $hello will be considered as different from the variable $Hello. Learn the PHP code: <?php $hello = 0; $Hello = 1; echo $hello; echo $Hello; ?> Run the PHP script in your web browser: Remark: A variable is assigned by using the symbol =. PHP VARIABLES - TYPES OF VARIABLES IN PHP The different PHP types PHP variable…

    • 0 replies
    • 4.6k views
  6. Started by Die2mrw007,

    In this PHP tutorial you are going to learn about the most important php output function (echo), that is to say about the function which will allow you to display on the screen the output of your php scripts. OUTPUT FUNCTION IN PHP - USING THE ECHO FUNCTION The echo output function allows you to return HTML code to the web browser of your visitor. In this way, the HTML code to be returned can be entered directly between quotation marks, as in the example below: Learn the PHP code: <html> <body> <?php echo "Enter here the message to be displayed"; ?> </body> </html> Run the PHP script in your web browser: Remark: The pre…

    • 0 replies
    • 2.3k views