Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
robert_of_anaheim
php loop having trouble loop?
In my configuration file I have
$image_1_Caption = "test 1";
$image_2_Caption = "test 2";
$image_3_Caption = "test 3";
$image_4_Caption = "test 4";
for ($x=1; $x<=4; $x++) {?>
<input name="image_<?=$x;?>_Caption" type="text" value="<?=$image_$x_Caption;?>" size="30" /><br>
<? }
3 AnswersProgramming & Design7 years agophp & URL how do I take out the parameters Help?
This is my URL how do I take out the parameters
www.mysite.com/index.php/categories/UsedParts
I am working with PHP
$directory = "categories";
$PagePame ="UsedParts";
1 AnswerProgramming & Design8 years agoclickable URLs inside HTML <textarea>?
I would like to populate a text area with clickable links
<textarea>
<a href="http://www.gohere.com">start/ Here</a>
<br>
<a href="http://www.gohereto.com">start/ Here To</a>
</textarea>
so all you would see on the website is a text area with
Start Here
Start Here To
and you could click on it and it would take you to the page
5 AnswersProgramming & Design1 decade ago