Repalce content in html??

Reply

Join Date: Apr 2008
Posts: 296
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: 296
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,535
Reputation: cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about 
Solved Threads: 137
cwarn23's Avatar
cwarn23 cwarn23 is offline Offline
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.
http://syntax.cwarn23.net/
Smilies: ^_* +_+ v_v -_- *~*`
My favourite PC. - Oopy Doopy Do 2U2!
Reply With Quote Quick reply to this message  
Reply

Message:




Views: 166 | Replies: 2
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC