Jump to content

Please verify the code..


glkshankar

Recommended Posts

Hi All,

 

I think i have asked a stupid question in my previous post .. I am pasting my code below ... using this code i am able to pass the ID value to the next query but i want the Name aswell to be used .. How can i do that ?

 

$ID send the ID value and i am getting it with no probs. but I want to take the select $CLSNAME also ..

 

<?php

//Cluster Querying starts here

$clsquery1 = "SELECT ID, NAME FROM VPX_ENTITY WHERE TYPE_ID= '3' ";

$results = mssql_query($clsquery1);

$number = mssql_num_rows($results);

$i = 0;

?>

 

<table border=1><tr><td>

<select name='Cluster' id='1'>

<option>Select</option>

 

<?php

while ($i < $number) {

 

$CLSNAME = mssql_result($results, $i, "NAME");

 

$ID = mssql_result($results, $i, "ID");

 

echo $_GET["<option value=$ID>" .$CLSNAME. "</option>"];

 

$i++ ;

 

}

 

?>

<input type=submit>

</select>

</td></tr></table>

Link to comment
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.