Jump to content

gorilla0

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Contact Methods

  • AIM
    GrillaMonk

Profile Information

  • Gender
    Not Telling

gorilla0's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Let me be specific: $table_name = \"my_table\"; $sql = \"select * from $table_name\"; $res = mysql_query($sql); This WORKS all day long in averyday PHP. in DreamWeaver\'s Recordset function, if you edit the code manually to reflect the same thing, it errors and says that $table_name does not exist.(We are not looking for $table_name, we are looking for the value of $table_name, that being \"my_table\") In other words, it views the $ as a regular character rather than understanding that it is a variable. Is that more clear? Sorry if I was not as specific in my first example.
  2. Thanks, if the solution works, it will save some redundant work, but I have to say: Technically, it is a bug, since within regular PHP coding there is absolutely no need to enclose a table_name in single quotes. In fact, I know of an instance where it needs to be done, whether it me MS SQL, Oracle or PostGres. I am a six - seven-month newbie to Studio MX, but not to PHP development by a longshot, so I would definitely consider this a DreamWeaver bug. MacroMedia Gods, here me :-P Additionally, I have not tried your fix, but am curious of the result.
  3. I noticed something quite strange & wondering if anyone has come across this: I created a record set & wanted to make the table_name a variable. I declared the variable, but Dreamweaver wanted to parse it as just a string rather than a variable. I tested to see if the variable was set properly and it was. Here is an example of what I mean: $table = \"colors\"; $sql = \"select * from $table\"; it tries to find a table name called \"$tables\" rather than \"colors\". This is VERY VERY basic stuff, I am really suprised at such a sloppy error. Anybody seen this?
  4. If you are an experienced PHP programmer, it should be failry easy.
×
×
  • 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.