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! Link to comment https://forums.phpfreaks.com/topic/1967-variable-within/ 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 } Link to comment https://forums.phpfreaks.com/topic/1967-variable-within/#findComment-6417 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. Link to comment https://forums.phpfreaks.com/topic/1967-variable-within/#findComment-6420 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. Link to comment https://forums.phpfreaks.com/topic/1967-variable-within/#findComment-6421 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.