Jump to content

[SOLVED] php mysql help?


marksie1988

Recommended Posts

Could someone tell me how i get a column from a row and if that column has yes to show it but if not then dont show it?

 

basically

 

if(['sold'] == yes){

show any rows with yes in the sold column

}

else{

show nothing

}

 

i basically want to show sold items and then have another script the other way around which shows available ones so ones with no in the sold column

 

please help with me starting it off all i need is the first bit then ill figure it out

 

Thanks

Steve

Link to comment
https://forums.phpfreaks.com/topic/55027-solved-php-mysql-help/
Share on other sites

dont forget to use $_POST[''];

<?php

// select database

// query database

$query="select * from colum";

// result query

$result=mysql_query($query)or die("mysql_error()");

// while loop with $x being the array

while($x=mysql_fetch_assoc($result)){

// if condition match condition

if($x['solid']=="yes"){

	echo $x['what_ever'];

// if condition dosent match

}else{}

// repeated the same ok.

if( $x['solid']=="no"){

 echo $x['what_ever'];

 }else{}
 
 // end while loop
}

?>

 

 

agree with andy why do it the long way round lol.

Link to comment
https://forums.phpfreaks.com/topic/55027-solved-php-mysql-help/#findComment-272016
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.