please help me !!! im new with php and facing few problem running it on browser.
whenever i embed php code in my html page with apache2.0.55 as my web server only html patr is displayed.
in case i run a page containing only php code it outputs a blank page on browser.(version-php4)
waiting to hear a good reply
thanx
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Whenever you use PHP you must change teh file extension to .php (the file can not have the .html extension any more).
Pure php files must have print or echo statements in order for the browser to display anything.
For example;
look at your form1.html file (no php code)
look at your admin/index.php file (this displays the admin page in your browser, it has embedded php code)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
please help me !!! im new with php and facing few problem running it on browser.
whenever i embed php code in my html page with apache2.0.55 as my web server only html patr is displayed.
in case i run a page containing only php code it outputs a blank page on browser.(version-php4)
waiting to hear a good reply
thanx
Whenever you use PHP you must change teh file extension to .php (the file can not have the .html extension any more).
Pure php files must have print or echo statements in order for the browser to display anything.
For example;
look at your form1.html file (no php code)
look at your admin/index.php file (this displays the admin page in your browser, it has embedded php code)