PHP Coding
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP RelatedPHP Coding

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old August 2nd, 2002, 10:57 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
Variable interpolation after sending through HTML form.

Two pages.

// Step1.html
<form action="step2.php" method="POST">
<textarea cols="50" rows="5" name="HTMLContent"></textarea>
<input type="Submit" value="Submit">
</form>

// Step2.php
<?PHP
$InterpolationVariable = "Interpolation worked";
$PreviousContent = stripslashes($HTTP_POST_VARS[HTMLContent]);

echo $PreviousContent;
?>

// Problem
When I put normal HTML in the HTMLContent textarea of step1.html, it outputs just fine. However when I add $InterpolationVariable to the HTML in the HTMLContent textarea of step1.php it outputs the literal $InterpolationVariable within the html.

// Example of TextArea Input
<STRONG>This part works.</STRONG><br>
<STRONG>The $InterpolationVariable</STRONG><br>

// Example of Step2.php Output
This part works(IN BOLD)
The $InterpolationVariable(IN BOLD)

// Conclusion
I'm not sure if this is really called variable interpolation so please forgive me if it's not. Is some function like stripslashes(); that will input the variables into the submitted content?

Thanks in advance,
Charles

Reply With Quote
  #2  
Old August 2nd, 2002, 11:31 PM
notepad notepad is offline
Codewalkers Loyal (3000 - 3499 posts)
 
Join Date: Apr 2007
Location: Central, IL USA
Posts: 3,214 notepad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
Send a message via AIM to notepad
RE: Variable interpolation after sending through HTML form.

well you can't use a variable that hasn't been defined yet.. for something like that you'd probably want to go with the str_replace function.. for example, in step 2 use:
php Code:
Original - php Code
  1.  
  2. <?
  3. $PreviousContent = stripslashes($HTTP_POST_VARS[HTMLContent]);
  4.  
  5. $AlteredContent = str_replace("InterpolationVariable","Interpolation worked",$PreviousContent);
  6.  
  7. echo $AlteredContent;
  8. ?>

instead of:
php Code:
Original - php Code
  1.  
  2. <?
  3. $InterpolationVariable = "Interpolation worked";
  4.  
  5. $PreviousContent = stripslashes($HTTP_POST_VARS[HTMLContent]);
  6.  
  7. echo $PreviousContent;
  8. ?>

and in the textarea just type "InterpolationVariable" where you want it replaced instead of using the variable format. i'm sure there's other ways of accomplishing the same thing if you don't care for this particular method

Reply With Quote
  #3  
Old August 3rd, 2002, 12:44 PM
cjrobs cjrobs is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Southampton, England
Posts: 121 cjrobs User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
Send a message via ICQ to cjrobs
RE: Variable interpolation after sending through HTML form.

php Code:
Original - php Code
  1.  
  2. <?PHP
  3. $InterpolationVariable = "Interpolation worked";
  4. $PreviousContent = stripslashes($HTTP_POST_VARS[HTMLContent]);
  5. $PreviousContent = eval($PreviousContent);
  6. ?>


The above code would treat the data put into the form as PHP, and so substitute any variables for their value. It would also run any functions. To put run functions or use variables from the TEXTAREA, you would treat it like a normal PHP script:

<STRONG>Hi There</STRONG><BR>
<?php echo("$InterpolationVariable"); ?>


This would produce, in Step2.php the following:

Hi there (Bold)
Interpolation worked

WARNING: This would give access to ANYONE to run ANYTHING (in PHP) on your server.

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP RelatedPHP Coding > Variable interpolation after sending through HTML form.


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway