HOW TO MAKE A BUTTON DISABLED FOR AT LEAST 24 HOURS? PHP OR HTML SCRIPT.?
Does anyone know a script either in php or html that disables a button so that when a person clicks on a button it automatically disables itself for at least 24 hours.
No trackbacks yet.
HOW WOULD YOU RUN A BATCH SCRIPT (IN THE BACKGROUND SO THE WINDOW DOESN’T POP UP) FROM C#?
September 8, 2010 - 8:04 am
Posted in Script | No comments
Question by Jane: How would you run a batch script (in the background so the window doesn’t pop up) from c#?
I have a batch script that works and does what I want.
Now, how can I run that script without the console popping up (or even being minimized)?
——————————————
Answer by RatchetrUse the function:
System.Diagnostics.Process.Start()
(Don’t ask me why they [...]
I WANT TO MAKE SITE LIKE YAHOO ANSWER , ANY ONE HAVE YAHOO ANSWER SITE SCRIPT?
September 6, 2010 - 8:10 pm
Posted in Script | No comments
Question by Lovedove: I want to make site like yahoo answer , any one have yahoo answer site script?
I want to make site like yahoo answer , any one have yahoo answer site script ?
——————————————
Answer by Don MGo to View/ Source
——————————————
Add your own answer in the comments!
WHAT ARE SOME SCRIPT TERMS FOR CAMERA SHOTS AND TRANSITIONS?
September 5, 2010 - 8:04 am
Posted in Script | No comments
Question by somedaysoon: What are some script terms for camera shots and transitions?
I’m doing Script Frenzy and I have never written a script before. I am doing this just for fun and I might direct and produce it later if I have the time. Anyway, I get the whole character, action, and dialogue stuff, but [...]
WHAT IS A GOOD RUNESCAPE BOT SCRIPT FOR CUTTING AND BANKING WILLOWS?
September 3, 2010 - 8:04 pm
Posted in Script | 8 comments
Question by CLEE99: What is a good Runescape bot script for cutting and banking willows?
Please give link to download. I dont want scripts that take breaks! The draynor willow chopper and Megalos Wc scripts take breaks.
Please give me a good RS bot WC script that
doesnt take breaks
excellent willow picking and fast
good anti bank
works with axe [...]
HOW LONG SHOULD A 30 MINUTE TELEVISION SCRIPT BE?
September 2, 2010 - 8:07 am
Posted in Script | No comments
Question by BohmaJ: How long should a 30 minute Television script be?
I am writing a script for a Television pilot and I am having a hard time getting a concept of its length. I looked at scripts from shows like Seinfeld and Friends, but those scripts range anywhere from 13 pages to 25 (when copied [...]
HOW CAN I AUTOMATE THE RENAMING OF FILES THROUGH A BATCH SCRIPT IN WINDOWS XP?
Question by dave: How can I automate the renaming of files through a batch script in Windows XP?
I’m not sure how to do this at the command prompt:
I’d like to remove the first three characters from a filename.
How can I do that in a batch script? This needs to be something that can [...]
HOW DO I ACCESS MY USB WHEN THE WINDOWS SCRIPT HOST SAYS “CAN NOT FIND SCRIPT FILE “G:\SOLUTION.VBS”?
August 30, 2010 - 8:08 am
Posted in Script | No comments
Question by Ody: How do I access my usb when the Windows Script Host says “Can not find script file “G:\solution.vbs”?
When I plugged in my usb, my AVG warned me that the file solution.vbs was potentially harmful.
So I had it moved in to the vault.
Now whenever I try to open my usb at my G: [...]
Q&A: HOW CAN I MAKE MY SCRIPT CHECK IF AN ENTERED SUBDIRECTORY IS VALID?
August 27, 2010 - 8:14 am
Posted in Script | 2 comments
Question by Chest Rockwell: How can I make my script check if an entered subdirectory is valid?
I’m writing a shell script for class that needs to prompt the user to enter a subdirectory, If their entry is valid, it will display the contents of that directory. If it is invalid, it will throw an error [...]
IS THERE ANY PHP SCRIPT SOFTWARE TO MANAGE USERS AND SESSIONS ACROSS ALL MY SITE SCRIPTS?
August 25, 2010 - 8:03 pm
Posted in Script | No comments
Question by Drigit Inrok: Is there any php script software to manage users and sessions across all my site scripts?
I have 10 site scripts which are all on different base of users… They have their own sessions users database tables and all… Is there any software(user management system) which can link all my scripts to [...]
WHAT COMPUTER SCRIPT GOES GOOD ALONG WITH HTML?
Question by Slayer: What personal script goes good along with html?
I know html very well and trying to learn another script. I know javascript goes great with html as i have used pre-made scripts before in my sites.
Php im having trouble with embedding properly to show php with html
xml?
——————————————
Answer by Empire539JavaScript [...]









February 21, 2010 - 4:29 pm
PHP definitely. The simplest way to do it just simply not showing the button, although with a little bit of workaround, people could just bypass the button and directly go to the link the button points to. If you need it to be secure, you’ll need to make some sort of IP logging.
February 21, 2010 - 4:45 pm
Set a cookie when the button is clicked.
< ?
setcookie("disable_button", "jahsdfk75random_text4rhhd", time()+3600*24);
?>
Then check for the cookie, and display the button if there is no cookie.
< ?
if(!isset ($_COOKIE["disable_button"]))
{
?>
put the html button code here
< ?
}
?>