Click here to Skip to main content
15,881,559 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,
I have downloaded opencart e-commerce application and trying to modify the index.php page but i am unable to see html coding of that page only php coding is visible.
When i view page source in browser it shows the complete html with php code in the same index.php file but when i open this file in editor it shows only php part of it

I am newbie for php please help
Posted
Updated 15-Apr-15 2:05am
v2

1 solution

Ehm, yes.
The HTML is generated by the PHP.
That is the purpose of php.

If you are completly new to php I would suggest you do not dive into the code of something like opencart immediately.

The index.php of opencart starts an application. Not just a simple page.
There is a good change it does not contain any html generation information since that will probably be done in functions included in the source.

Most of the time there is no need to change any of the php to accompish you're goals.
If the goals is to change to look and feel. You should first change the stylesheet/css files.
If the goal is to change the behaviour, look for already made plugins first.

If none of that helps an you need to change or add php code. You should first follow some tutorials on php.
 
Share this answer
 
v2
Comments
[no name] 18-Apr-15 11:37am    
<blockquote class="quote"><div class="op">Quote:</div>The HTML is rendered by the PHP</blockquote>
Great that php renders now....
Sebastiaan Meijerink 18-Apr-15 11:55am    
Ok ok. Not rendered. Generated.
[no name] 18-Apr-15 12:09pm    
Thank you for confirm. This is a big difference, especially for People who are not safe and ask for help ;)
Sebastiaan Meijerink 18-Apr-15 12:23pm    
Updated my answer.
[no name] 18-Apr-15 12:27pm    
My very small 5 for now :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900