tgavin Posted September 19, 2004 Share Posted September 19, 2004 How can I do this so it works? $var1 = "hello"; if ($row_rs_mydb['$var1'] == "") { do something } TIA! Quote Link to comment Share on other sites More sharing options...
morpheus.100 Posted September 20, 2004 Share Posted September 20, 2004 $var1 = "hello"; if ($row_rs_mydb['$var1'] == "hello") { do something } else { do this } Quote Link to comment Share on other sites More sharing options...
tgavin Posted September 20, 2004 Author Share Posted September 20, 2004 Thanks morpheus, but that won't work. I'm creating a function that I will be using 10 times on 1 page. Each instance will have different values plugged into it. So in the first instance it will be $var1, then in the second instance it will be $var2, and so on. Quote Link to comment Share on other sites More sharing options...
morpheus.100 Posted September 20, 2004 Share Posted September 20, 2004 Create a loop. How you run the loop is depedant upon what you aim to do with it. You could use a while satement to run the loop or perhaps a figure based upon number of rows. If using dreamweaver why not use the repeat region behavior and just modify the conditional statement to suit your needs. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.