Jump to content

codrgi

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

codrgi's Achievements

Member

Member (2/5)

0

Reputation

  1. I tried the php echo and still having problems with this, all i want the code to do is get the servers time, not the clients time
  2. I posted a js code in my first post, however i'll now post the one that has php in it and giving me the probs, i hope someone will brush it up for me function zeroPad(num,count) { var numZeropad = num + ''; while(numZeropad.length < count) { numZeropad = "0" + numZeropad; } return numZeropad; } function getLocalTime() { var rightNow = <?php date('G');?>; var date1 = new Date(rightNow.getFullYear(), 0, 1, 0, 0, 0, 0); var date2 = new Date(rightNow.getFullYear(), 6, 1, 0, 0, 0, 0); var temp = date1.toGMTString(); var date3 = new Date(temp.substring(0, temp.lastIndexOf(" ")-1)); var temp = date2.toGMTString(); var date4 = new Date(temp.substring(0, temp.lastIndexOf(" ")-1)); var hoursDiffStdTime = (date1 - date3) / (1000 * 60 * 60); var hoursDiffDaylightTime = (date2 - date4) / (1000 * 60 * 60); if (hoursDiffDaylightTime == hoursDiffStdTime) { return "GMT" + hoursDiffStdTime; } else { return "GMT" + hoursDiffStdTime + " <small>DST</small>"; } } function getTimezone(){ var d= <?php date('G');?>; var offs= d.getTimezoneOffset(); var str= offs> 0? '+': ''; str+= offs%60? offs+' minutes, ': (offs/60)+' hours, '; var s= d.toString(); var tz= /(\: *\d{2} *)([a-z]+)([\-\+]\d+)? *\(?([a-z ]+)?/i.exec(s) || []; if(!tz[3]) tz[4]= tz[2]; if(offs==0) return tz[4] || ' GMT'; return ' GMT '+str+ (tz[4] || ''); } function countdownTimer(gotTime,elementName) { var idInfo = document.getElementById(elementName); var elementHour = elementName+'_hour'; var idInfoHour = document.getElementById(elementHour); // Write up my date functions, now and then var d = <?php date('G');?>; var d2 = new Date(gotTime); // Time in miliseconds, for now and then var nowLocalTime = d.getTime(); var thenLocalTime = d2.getTime(); // global offset, should be the same for BOTH var offsetTime = (d.getTimezoneOffset()*(60000)); // Convert thenTime & nowTime to GMT time var thenTime = thenLocalTime+offsetTime; var nowTime = nowLocalTime+offsetTime; // Get the hour/minute/sec in...local...time... var localHours = zeroPad(d2.getHours(),2); var localMinutes = zeroPad(d2.getMinutes(),2); var localSeconds = zeroPad(d2.getSeconds(),2); diff = (thenTime-nowTime); // Get our varables/minutes/seconds/hours/mili/days var milliseconds=Math.floor(diff % 1000); diff=diff/1000; var seconds=Math.floor(diff % 60); diff=diff/60; var minutes=Math.floor(diff % 60); diff=diff/60; var hours=Math.floor(diff % 24); diff=diff/24; var days=Math.floor(diff); // Add leading zero hours = zeroPad(hours,2); minutes = zeroPad(minutes,2); seconds = zeroPad(seconds,2); if(hours < 1) { // Hour return hourReturn = '<span style="color: red;">'+hours+':'+minutes+':'+seconds; // Write our final return var returnVar = ''+hours+':'+minutes+':'+seconds+'</span>'; } else { // Hour Return hourReturn = ''; // Write our final return var returnVar = ''+hours+':'+minutes+':'+seconds; } // Return our results if(idInfo) { idInfo.innerHTML = returnVar; } if(idInfoHour) { idInfoHour.innerHTML = hourReturn; }
  3. i tried adding php date('G'); using my code but now it dosen't show anything
  4. im both new to js and php, how would i do that?
  5. My code function zeroPad(num,count) { var numZeropad = num + ''; while(numZeropad.length < count) { numZeropad = "0" + numZeropad; } return numZeropad; } function getLocalTime() { var rightNow = new Date(); var date1 = new Date(rightNow.getFullYear(), 0, 1, 0, 0, 0, 0); var date2 = new Date(rightNow.getFullYear(), 6, 1, 0, 0, 0, 0); var temp = date1.toGMTString(); var date3 = new Date(temp.substring(0, temp.lastIndexOf(" ")-1)); var temp = date2.toGMTString(); var date4 = new Date(temp.substring(0, temp.lastIndexOf(" ")-1)); var hoursDiffStdTime = (date1 - date3) / (1000 * 60 * 60); var hoursDiffDaylightTime = (date2 - date4) / (1000 * 60 * 60); if (hoursDiffDaylightTime == hoursDiffStdTime) { return "GMT" + hoursDiffStdTime; } else { return "GMT" + hoursDiffStdTime + " <small>DST</small>"; } } function getTimezone(){ var d= new Date(); var offs= d.getTimezoneOffset(); var str= offs> 0? '+': ''; str+= offs%60? offs+' minutes, ': (offs/60)+' hours, '; var s= d.toString(); var tz= /(\: *\d{2} *)([a-z]+)([\-\+]\d+)? *\(?([a-z ]+)?/i.exec(s) || []; if(!tz[3]) tz[4]= tz[2]; if(offs==0) return tz[4] || ' GMT'; return ' GMT '+str+ (tz[4] || ''); } function countdownTimer(gotTime,elementName) { // Set my element get var idInfo = document.getElementById(elementName); var elementHour = elementName+'_hour'; var idInfoHour = document.getElementById(elementHour); // Write up my date functions, now and then var d = new Date(); var d2 = new Date(gotTime); // Time in miliseconds, for now and then var nowLocalTime = d.getTime(); var thenLocalTime = d2.getTime(); // global offset, should be the same for BOTH var offsetTime = (d.getTimezoneOffset()*(60000)); // Convert thenTime & nowTime to GMT time var thenTime = thenLocalTime+offsetTime; var nowTime = nowLocalTime+offsetTime; // Get the hour/minute/sec in...local...time... var localHours = zeroPad(d2.getHours(),2); var localMinutes = zeroPad(d2.getMinutes(),2); var localSeconds = zeroPad(d2.getSeconds(),2); // Calculae the difference diff = (thenTime-nowTime); // Get our varables/minutes/seconds/hours/mili/days var milliseconds=Math.floor(diff % 1000); diff=diff/1000; var seconds=Math.floor(diff % 60); diff=diff/60; var minutes=Math.floor(diff % 60); diff=diff/60; var hours=Math.floor(diff % 24); diff=diff/24; var days=Math.floor(diff); // Add leading zero hours = zeroPad(hours,2); minutes = zeroPad(minutes,2); seconds = zeroPad(seconds,2); // Colour? if(hours < 1) { // Hour return hourReturn = '<span style="color: red;">'+hours+':'+minutes+':'+seconds; // Write our final return var returnVar = ''+hours+':'+minutes+':'+seconds+'</span>'; } else { // Hour Return hourReturn = ''; // Write our final return var returnVar = ''+hours+':'+minutes+':'+seconds; } // Return our results if(idInfo) { idInfo.innerHTML = returnVar; } if(idInfoHour) { idInfoHour.innerHTML = hourReturn; } above is a countdown timer, but it uses the clients clock and not server side clock, how would i solve this?
  6. I want to change the $_GET in the address bar, so it looks like somethin like this www.website.com/page.php?action=register and i want to hide that by making it look like this www.website.com/register could someone let me know how i do this? leaving some examples to do this?
  7. example www.website.com/index.php www.website.com/login.php redirect or give 404 msg when ppl visit the below url www.website.com/index/ www.website.com/login/ The index and login are .php files, i dont have any directorys named index or login but each time i delete the .php from the login.php and replace is with login/ to make www.website.com/login/ it still finds the file and uses it, all i want to do is redirect or show a 404 msg to anyone that goes there, it may be inside the php.ini or conf file but i dont know where to edit to solve this, which is why i made this post
  8. How do i solve this? it takes me to my site and the pics and everything dosen't show, it also does it for any .php file shown in the first directory example www.website.com/index.php www.website.com/login.php redirect or give 404 msg when ppl visit the below url www.website.com/index/ www.website.com/login/ how do i solve this?
  9. can anyone give a few examples of how this is done? i want to completely hide www.website.com/home.php?page=registration to make it look like this - www.website.com/registration
  10. i want to exec a stored procedure with the parameter thats inside a table somewhere, say i do this select @col = column from table exec storedprocedure @col i want it to do the stored precedure for the whole table finding the parameter itself by using the select statement, not just the last row it finds, as when i do this it only does it for just one row, how do i go about doing this for each row it finds, that i ask it to select?
  11. i want to exec a stored procedure with the parameter thats inside a table somewhere, say i do this i want it to do the stored precedure for the whole table finding the parameter itself by using the select statement, not just the last row it finds, as when i do this it only does it for just one row, how do i go about doing this for each row it finds, that i ask it to select?
  12. each time i use a stored procedure to insert at least 2 or more rows in a table, it only inserts the last row it finds, no matter how many stuff it finds, im using a "select @col = col from table" query and it returns more than 2 rows,how do i solve this so that it inserts all the rows it finds?
  13. Does anyone have any examples of how i could do this?
  14. how do i redirect to www.website.com/home if someone tried to go to my home.php file? EXAMPLE URL- HOW TO REDIRECT THIS TO THE ABOVE EXAMPLE URL? Right now i'm using Apache, and just want to redirect it to the first url if someone tries adding the .php to the file, how can this be done?
×
×
  • 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.