What i am saying is that the code that you showed us for the page is different to the source code you just showed us.
First off its all capitalised!
Check and make sure you are viewing the right page
Wow, if you did know that then you would know what you are doing wrong.
If i am right from your badly written question, all you need to do is change them to radio boxes with the same name.
No you don't that is what you are telling it to print, btw i might be able to save you some hassle with my kinda ajax pagination using mysql
http://djw-webdesign.awardspace.com/code.php?snippet=11
Ok first off make sure you have connected to the database, to check add
if(mysql_ping())
{
echo "Connected";
}
else
echo "not";
put that above the query, then after the query put
echo mysql_num_rows($commentids);
And tell me the output
Yes try it, but don't forget to use quotation marks in the echo.
Also i hope you are using $_POST['']; to get the post data and not
$_SERVER['HTTP_POST_VARS'] (or whatever it is)
Use $_POST, $_GET is used for site searches and user profiles etc. mainly not for things like login forms etc.
When you press refresh the url will still be http://mysite.com?dataGetter.
Or just redirect once you have done the data stuff
try
SELECT o.offerid
, o.name, o.incent, o.type, o.reporting, o.category
, IFNULL( e.pay_value, o.pay_value ) AS pay_value
FROM offers as o
JOIN exceptions as e USING (pay_value,offerid)
WHERE o.status = 'On'
ORDER BY o.pay_value $orderx LIMIT $from, $max_results
I don't think you will find one here, if you want a tutorial then google php comment tutorial.
Or if you want to make one then the first thing you want to do is choose between a database and text based system, once you have done that then we can help you create the code.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.