943,693 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 306
  • PHP RSS
Sep 25th, 2009
0

Repalce content in html??

Expand Post »
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

PHP Syntax (Toggle Plain Text)
  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??
Similar Threads
Reputation Points: 3
Solved Threads: 15
Posting Whiz
Aamit is offline Offline
341 posts
since Apr 2008
Sep 25th, 2009
0

Re: Repalce content in html??

Please anyone remove my duplicate thread on same topic

By mistake i post twice...
Reputation Points: 3
Solved Threads: 15
Posting Whiz
Aamit is offline Offline
341 posts
since Apr 2008
Sep 25th, 2009
0

Re: Repalce content in html??

Try the following:
php Syntax (Toggle Plain Text)
  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;
Sponsor
Featured Poster
Reputation Points: 410
Solved Threads: 258
Occupation: Genius
cwarn23 is offline Offline
3,004 posts
since Sep 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: Row variable to live link
Next Thread in PHP Forum Timeline: Upload a Thumbnail of selected file





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC