Hi,
How can i read the MSSQL timestamp and convert/change it to MySQL timestamp?
the timestamp in MSSQL represent in hexdecimal.. how can i convert it?
You can't. The value for a timestamp column in MSSQL has nothing to do with date or time, it is just a counter.
What you can do is create a timestamp in PHP and put it into either an int or varchar column in MSSQL. Then you should be able to convert with no probs.