Repalce content in html??

Reply

Join Date: Apr 2008
Posts: 293
Reputation: Aamit has a little shameless behaviour in the past 
Solved Threads: 11
Aamit Aamit is offline Offline
Posting Whiz in Training

Repalce content in html??

 
0
  #1
Sep 25th, 2009
Hi,This is my php file.
I want to replace
$$FullName$$ with Jon Rama
And $$FirstName$$ with Jon and $$Gender$$ with Male


And save or create to new file Jon_Rama.php

  1. <table width="100%">
  2. <tr>
  3. <td align="center">
  4. <b>
  5. <h1 class="title_list">$$FullName$$</h1>
  6. </b>
  7. <br><br>
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>$$FirstName$$ is a $$Gender$$.</td>
  12. </tr>
  13. </table>

How to do this??
Reply With Quote Quick reply to this message  
Join Date: Apr 2008
Posts: 293
Reputation: Aamit has a little shameless behaviour in the past 
Solved Threads: 11
Aamit Aamit is offline Offline
Posting Whiz in Training

Re: Repalce content in html??

 
0
  #2
Sep 25th, 2009
Please anyone remove my duplicate thread on same topic

By mistake i post twice...
Reply With Quote Quick reply to this message  
Join Date: Sep 2007
Posts: 1,476
Reputation: cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about 
Solved Threads: 136
cwarn23's Avatar
cwarn23 cwarn23 is offline Offline
Nearly a Posting Virtuoso

Re: Repalce content in html??

 
0
  #3
Sep 25th, 2009
Try the following:
  1. $data='<table width="100%">
  2. <tr>
  3. <td align="center">
  4. <b>
  5. <h1 class="title_list">$$FullName$$</h1>
  6. </b>
  7. <br><br>
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>$$FirstName$$ is a $$Gender$$.</td>
  12. </tr>
  13. </table>';
  14. $data=str_replace(array('$$FirstName$$','$$Gender$$','$$FullName$$'),array('Bill','Male','Bill Gates'),$data);
  15. echo $data;
Try not to bump 10 year old threads as it can be really annoying.
Like php then read my website at http://syntax.cwarn23.net/
Star-Trek-Atlantis - now that's what I call a movie ^_^
My favourite PC. - MacGyver Fan
Bad english note: dis-iz-2b4u
Reply With Quote Quick reply to this message  
Reply

Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC