Jump to content

Recommended Posts

How do i tell this variable (that is coming from Flash):

 

$weeklyRate=$_POST['weeklyRate'];

 

That it is a NUMBER/integer instead of a string...

 

In order for:

 

$result = mysql_query("SELECT neighborhood, capacity, weeklyRate, monthlyRate FROM apt_data where neighborhood = '$neighborhood' AND weeklyRate <= '$weeklyRate'");

 

To work correctly

 

Appreciate the help!

Thanx,

Try

 

$result = mysql_query("SELECT neighborhood, capacity, weeklyRate, monthlyRate FROM apt_data where neighborhood = '$neighborhood' AND weeklyRate <= $weeklyRate");

I deleted the single quotes on $weeklyRate

 

If that doesn't work,try

 

$weeklyRate=(int)$_POST['weeklyRate'];

Force type casting:

 

$weeklyRate = (int) $_POST['weeklyRate'];

 

Although...I'm pretty sure that sql should recognize it as an int as is...not really sure why it wouldn't...did you echo it out first to see that it's got what you're expecting?  Maybe it's got a \n or \r or \n\r hiding on there, and you need to trim it instead?

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.