prof9backlink
Level 1
Write the reason you're deleting this FAQ
I mean if we have a webpage coded in php, how can I edit the content in it later? In other shape, how can I make bold/italic words in a page coded in php for search engine optimization (seo) matters? Is there any php editor such many HTML editors out there?
bormanbg
In the PHP you need to add <b></b> tags inside of the words you want to bold, etc.
i.e. $stringOftext = "Hello World"; would be $stringOftext = "<b>Hello World</b>"
It is probably a good idea to understand and learn php before attempting to edit the php.
The PHP should be outputting HTML. (The PHP code will most likely generate html). In the PHP you need to add tags inside of the words you want to bold, etc. i.e. $stringOftext = "Hello World"; would be $stringOftext = "Hello World" It is probably a good idea to understand and learn php before attempting to edit the php. :)
Are you sure you want to delete this post?