Jump to content

Why sin't this working?!


HCProfessionals

Recommended Posts

$newsletter_settings_query = "SELECT * FROM newsletter_settings";
$newsletter_settings = mysql_query($newsletter_settings_query) or die("There was a problem with the SQL query: " . mysql_error());

$header_image = $newsletter_settings['sHeaderImage'];
$header_name = $newsletter_settings['sHeaderName'];
$header_text = $newsletter_settings['sHeaderText'];

 

None of those variables are displaying data.

Link to comment
Share on other sites

For those vars to work you need to add mysql_fetch_assoc

 

$newsletter_settings_query = "SELECT * FROM newsletter_settings";
$result = mysql_query($newsletter_settings_query) or die("There was a problem with the SQL query: " . mysql_error());
$newsletter_settings = mysql_fetch_assoc($result);

$header_image = $newsletter_settings['sHeaderImage'];
$header_name = $newsletter_settings['sHeaderName'];
$header_text = $newsletter_settings['sHeaderText'];

Link to comment
Share on other sites

np

 

you can also use that inside a loop like this

 

$select = mysql_query("SELECT * FROM newsletter_settings'") or die(mysql_error());
while ($newsletter_settings = mysql_fetch_array($select)) {

$header_image = $newsletter_settings['sHeaderImage'];
$header_name = $newsletter_settings['sHeaderName'];
$header_text = $newsletter_settings['sHeaderText'];

}

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.