Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by ArkM … time" representation: ;) [quote]unix time stamp is like = 1227806311 the same system time stamp is = 27/11/2008 HR MIN SEC… adopt this code: [code=c] /* UnixTime is unspecified unix time stamp type. * Define it before compilation, for example: * typedef time_t UnixTime… How to convert UNIX time stamp to syatem time stamp Programming Software Development by spanigrahi_situ HI All, Ant Unix method or C++ method is there to convert unix time stamp to system time stamp.The input is ULONG and out put should be in string. u can intimate to <email snipped> Any help is appreciated in advance. Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by spanigrahi_situ [QUOTE=ArkM;744987]Can you explain what is meant by "unix timestamp" and (mainly) "system timestamp"?[/QUOTE] unix time stamp is like = 1227806311 the same system time stamp is = 27/11/2008 HR MIN SEC Change image name to be datatime stamp Programming Web Development by DaveyMoyes … out is how to rename the image to the datatime stamp and to keep the file extension .jpg / .png / .gif / .jpeg… if($val) { //update database and rename //rename image to datetime stamp rename($dest, 'members/'.$securecode.'/'.$sname.'/images/igal/jan.jpg'); //set… How to time-stamp an event in Windows? Programming Software Development by zalia64 … those images with the outside world, I want to time-stamp when some trigger happens and causes an interrupt. This means… for later use. In DOS, or Linux, this whole time-stamp process takes less then 5 nano-seconds: " STI , push… Convert time stamp to date using php Programming Web Development by vssp hai Friends How to convert time stamp to actual date uding php ? Please help me __________________ Thanks Vssp time stamp Programming Software Development by teshi what can possibly be done to insert a time stamp and a date into oracle database using Java code DateTime stamp or Code? Programming Software Development by madcat62 Has anyone ever seen a date time stamp or code like this? [CODE]7CDE8F64DB88782E4EEEBF5DF6B84F034FEEBD54EBB1551E44F3BF5088C93E6B[/CODE] Get and set a file's date and time stamp Programming Software Development by vegaseat You can look at a selected file's date and time stamp and change it with this Delphi program. XP files need a little extra TLC, but it's taken care of too. Information classification needs more than a James Bond top secret stamp Hardware and Software Networking by newsguy …;Traditional Information classification is characterised by the 'Top Secret' rubber stamp in James Bond films," says Nick Frost, the report… Basic Stamp Programming Software Development by Tech B Is there a way to grab values from a basic stamp with python? I just bought a Accelerometer and want to read the values with python. Re: Basic Stamp Programming Software Development by Tech B I have values in the Basic Stamps debugger and only in the debugger. I want python to be able to read the values. I'm going to map the mouse movements on the computer with the values, and possibly port the values into excel to be graphed. I can do all of that with python except read the values from the stamp. Re: Basic Stamp Programming Software Development by Tech B … BASIC code that is loaded into the microcontrollers memory: [CODE] ' {$STAMP BS2} ' {$PBASIC 2.5} x VAR Word y VAR Word… How to convert string into datetime stamp in php Programming Web Development by ankit.pandey3 … column in which I want to insert is Date time stamp though I have string type ($datetime) variable. I think I… How do I write a SQL query involving a time stamp? Programming Databases by complete How do I write a SQL query involving a time stamp? QUOTE_ID is a character string CREATE_DTG is a date time … Re: time-stamp Programming Web Development by vijukumar hi ryan, please tell me is possible to retaining it as int only and to store its time in database? i have been told by others that if i use it as date or time-stamp type it will be trouble some to use it in later part will you pass me any simple php code where there ideas are used? thanks a lot for your reply. Stamp text on an image. Programming Web Development by valonesal I have images I would like to serve that will need individual information posted on them. Just a word or two. The information will be pulled from our database. The text will depend on the url that is entered. We tried just a simple echo but when you view just the image by right click the text disappears. And we want the text to stay on the image… Re: Stamp text on an image. Programming Web Development by Will Gresham Take a look at the GD library: [url]http://www.libgd.org/Main_Page[/url] Re: Stamp text on an image. Programming Web Development by valonesal I know that gd library can probably help to accomplish this but I have no idea how to go about implementing it. Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by ArkM Can you explain what is meant by "unix timestamp" and (mainly) "system timestamp"? Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by ddanbe Read [url]http://en.wikipedia.org/wiki/Unix_time[/url] as a start. Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by spanigrahi_situ Sry to tell you guys my output time should be GMT or UTC.Any one plz help me on this urgently? Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by Salem > Any one plz help me on this urgently? You've had 13 days to play with the code ArkM posted, and now you're trying to make it into OUR problem? [url]http://www.catb.org/~esr/faqs/smart-questions.html#urgent[/url] Ha ha ha ha ha *plonk* Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by spanigrahi_situ hmmmm dude i was busy with some other issues. Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by ArkM [QUOTE=spanigrahi_situ;755005]hmmmm dude i was busy with some other issues.[/QUOTE] Just the TIME to go on with that issues ;)... Re: How to convert UNIX time stamp to syatem time stamp Programming Software Development by Salem > hmmmm dude i was busy with some other issues. Your choice - give up programming or give up something else. You're not going to learn anything by dipping into programming for a couple of hours a month, so I'd say give up. Otherwise you would have found a way to do something in the last fortnight, rather than just showing up here at the last … Re: Change image name to be datatime stamp Programming Web Development by diafol [CODE]$now = time(); //this gives a unix timestamp (integer) //OR $now = date('YmdHis') //gives a more readable timestamp, e.g. 20120211121545 (2012-02-11 12:15:45) $dest="members/$securecode/$sname/images/igal/{$image_name}_{$now}.{image_extension};[/CODE] This way you don't need to rename. Obviously you need to exctract the filename and … Re: Change image name to be datatime stamp Programming Web Development by DaveyMoyes Hi thanks for a quick reply - How can i integrate your solution into my image upload ? Re: Change image name to be datatime stamp Programming Web Development by diafol Want me to upload it for you too?! [CODE]$img1 = $_FILES['jan_image']['name']; $fdata = pathinfo($_FILES['jan_image']['name']); $image_name = $fdata['filename']; $image_extension = $fdata['extension']; $now = date('YmdHis'); $allowed_exts=array('jpg','jpeg','png','bmp','gif'); if(in_array(strtolower($image_extension), $allowed_exts)){ $dest… Re: Convert time stamp to date using php Programming Web Development by stymiee Use the [url=http://us3.php.net/date]date()[/url] function