Jump to content

missing the last character

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
6 replies to this topic

#1
DrorZeno

DrorZeno

    Newbie

  • Members
  • Pip
  • 7 posts
hi everyone,

i have a problem The last character is gone i use php with mssql...


it very urgent...

#2
James.H

James.H

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 866 posts
Can you post the PHP code here please.

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Without seeing your code, we can't even tell if you're missing the last character from a SQL query, or something else.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
DrorZeno

DrorZeno

    Newbie

  • Members
  • Pip
  • 7 posts
Okay, sorry you right here's the code:

		$id = SQLfix(intval($_GET['id']));

	

	$query_details = mssql_query("SELECT recipients.birthday,recipients.familystatus,recipients.FirstName,recipients.city, cities.cityName FROM recipients, cities WHERE recipients.idx = '".$id."' AND recipients.city = cities.cityCode") or die("Died");

And that only happens when i take hebrew.

#5
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Which character is missing?
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#6
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Which character is missing?
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#7
Feral

Feral

    Programmer

  • Members
  • PipPipPipPip
  • 162 posts
Please give an example of how the information is stored in the database.
What the expected output would be.
and what the actual output is.