Search found 3 matches

by Mordachai
Mon Oct 03, 2005 3:09 pm
Forum: PHP - Code
Topic: html/javascript/php post problem
Replies: 3
Views: 269

I didnt know that there was a target attribute for the font tag.

Many thanks.
by Mordachai
Mon Oct 03, 2005 11:52 am
Forum: PHP - Code
Topic: html/javascript/php post problem
Replies: 3
Views: 269

html/javascript/php post problem

I was wondering. In one page I have a button and a $var which contains "test". If you click the button it opens another window and posts the $var in that window. You can easily do this with secondpage.php?var=test (through GET) but I don't want to do that. I want to actually post something...
by Mordachai
Mon Sep 26, 2005 4:19 am
Forum: PHP - Code
Topic: using Predefined variables
Replies: 1
Views: 243

using Predefined variables

I was wondering should I use $_POST throughout my script or should I first put the data in a normal var and use that one throughout my script? I mean like this $var = $_POST["var"]; and use var from then on. I can also do this no? $_POST["var"] = "test"; But is it good ...