Jump to content

php mysql help


dezkit

Recommended Posts

for this situation I would do something like this

 

if(!(isset($_POST['showall'])))

{

  $firstsix='no';

}

else

{

  $firstsix='yes';

}

 

if($firstsix=='yes')

{

RUN QUERY TO GENERATE FIRST 6

}

 

if($firstsix=='no')

{

RUN QUERY TO GENERATE ALL

}

 

<form action='yourpage.php' method='post'>

<input type='hidden' value='showall'

<input type='submit' value='Show All' />

 

I would submit this to the same page your form is on.

Something like that.

Link to comment
https://forums.phpfreaks.com/topic/109959-php-mysql-help/#findComment-564267
Share on other sites

You could also just use a link and use $_GET to set the variable

 

if(!(isset($_GET['showall'])))
{
  $firstsix='no';
}
else
{
  $firstsix='yes';
}

if($firstsix=='yes')
{
RUN QUERY TO GENERATE FIRST 6
}

if($firstsix=='no')
{
RUN QUERY TO GENERATE ALL
}

<a href="page.php?showall=true">Show all</a>

 

Same thing really, I just don't like form buttons :)

Link to comment
https://forums.phpfreaks.com/topic/109959-php-mysql-help/#findComment-564275
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.