Sponsored by NuSphere - PHP Software for PHP Application Developers - On Sale This Week for $100



Go Back   PHP-Editors > Programming Help > PHP Programming Help

PHP Programming Help Post any question relating to PHP Programming here and hopefully someone can help.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 2008-08-12, 09:15 AM
Junior Member
 
Join Date: Aug 2008
Posts: 1
jazzsinger56 is on a distinguished road
Default How to insert variable into http:// address

Hi,
I am SUCH a beginner. I would appreciate any help you could offer. I am trying to insert a value from the database into the end of an html address:

<script type="text/javascript" src="http://www.website.com.au/graphic_current.jsp?postcode="></script>

I have the value -- in a print statement it's:

<?php echo $fieldsFormatted['field_postcode']; ?>

How do add the value of 'field_postcode' (say for example '2484') onto the end of the http like this:

<script type="text/javascript" src="http://www.website.com.au/graphic_current.jsp?postcode=2484"></script>

Thanks in advance , guys. Cheryl
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 2008-08-13, 11:06 PM
Junior Member
 
Join Date: Aug 2008
Location: India
Posts: 1
tshah is on a distinguished road
Default How to insert variable into http:// address

hi,

it could be like this -

<script type="text/javascript" src="http://www.website.com.au/graphic_current.jsp?postcode=<?php echo $fieldsFormatted['field_postcode']; ?>"></script>

hope this helps.
Reply With Quote
  #3 (permalink)  
Old 2008-10-30, 04:45 PM
Junior Member
 
Join Date: Oct 2008
Posts: 2
magicsoft is on a distinguished road
Default

Try This and replay to me please
Code:
<?


$httpname='http://www.website.com.au/graphic_current.jsp?postcode=';
echo "<script type=\"text/javascript\"";

echo "$httpname $fieldsFormatted['field_postcode']";
echo "</script>";

?>
Reply With Quote
Must read Review for Serious PHP Developers


NuSphere PhpED 5.5 : The Staff of php-editors.com recently spent a few days working with NuSphere PhpED 5.5 (a popular PHP IDE) and NuCoder 2.0 (a PHP Encoding Utility), read up on all the details.

Sponsored Links
Reply

Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 09:47 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
© Copyright 2003-2008 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.