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, 11: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: 25
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 3rd, 2002, 12:31 AM
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: 6
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, 01: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: 3
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




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

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




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 11 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek