Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.