Goto Page: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ... 216
Actual Results
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Form with Checkboxes and Addition
- Subject: PHP Form with Checkboxes and Addition
- Replies: 1
- Views: 986
Posted: December 29th, 2011, 11:06 am
$HTTP_POST_VARS is a global variable and by default most servers turn them off. You can get the same data by using the $_POST variable.
PHP Code: [ Select ]
if (isset($_POST)) {
$general1 = $_POST["general1"];
$general1 = $_POST["general1"];
- if (isset($_POST)) {
- $general1 = $_POST["general1"];
- SpooF
- Forum: Hardware
- Topic: Building your own computer
- Subject: Building your own computer
- Replies: 11
- Views: 1763
- Subject: Building your own computer
Posted: November 6th, 2011, 11:26 am
WOW! I didnt think this was really going to happen.
http://blog.zorinaq.com/?e=62
a 1TB HDD from newegg is over $200. They use to be ~$90
http://blog.zorinaq.com/?e=62
a 1TB HDD from newegg is over $200. They use to be ~$90
- SpooF
- Forum: Hardware
- Topic: Building your own computer
- Subject: Building your own computer
- Replies: 11
- Views: 1763
- Subject: Building your own computer
Posted: November 3rd, 2011, 11:04 pm
So cases prices vary depending on material they are made out of, features they have in side them, and how well they are engineered for air flow. Some features are tool-less installation (for hard drives and cd-rom drives) back plate for cable management and water outlets for water cooling. What your...
- SpooF
- Forum: Hardware
- Topic: Building your own computer
- Subject: Building your own computer
- Replies: 11
- Views: 1763
- Subject: Building your own computer
Posted: November 3rd, 2011, 5:47 pm
Your best bet is to save up and buy everything when your ready, as prices are always dropping and buying something today and not using it is a waste of money in the long run. You'll probably find that over a 6 month period the price of a computer today will drop ~10% or more depending on what new re...
- SpooF
- Forum: General Discussion
- Topic: Which blogging software should I use?
- Subject: Which blogging software should I use?
- Replies: 9
- Views: 832
Posted: October 18th, 2011, 2:50 pm
grinch2171 wrote:
There are some pretty big name sites that use Drupal as their backend.
Such as http://whitehouse.gov
- SpooF
- Forum: Hardware
- Topic: upgrading Graphics Card
- Subject: upgrading Graphics Card
- Replies: 1
- Views: 1094
- Subject: upgrading Graphics Card
Posted: October 12th, 2011, 7:47 pm
I had the 7950GT and it was a good card. Will definitely out perform the 7600GT and should be leaps above your 7300GS.
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: MySQL speed question..
- Subject: MySQL speed question..
- Replies: 8
- Views: 726
- Subject: MySQL speed question..
Posted: October 8th, 2011, 1:48 pm
If the first query using the word gets you the same row there is no reason to run the second. One thing to speed up the query is to do an index on the word field.
- SpooF
- Forum: Photography Forum
- Topic: Happy New Owner of a Canon EOS Rebel T3 :)
- Subject: Happy New Owner of a Canon EOS Rebel T3 :)
- Replies: 2
- Views: 1549
Posted: October 7th, 2011, 8:34 am
I don't have a T3 but I do have a 40D. As far as tips it depends what you bought the camera for. I do a lot of landscape so getting a tripod was one of the first things I did. It helped a lot especially for night shots. I found moving to the manual side of the camera was pretty easy. I haven't done ...
- SpooF
- Forum: General Discussion
- Topic: Tough Mudder
- Subject: Tough Mudder
- Replies: 3
- Views: 1148
- Subject: Tough Mudder
Posted: October 5th, 2011, 9:08 pm
Looks like a more insane version of Warrior Dash 
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: Why TagCloud is important for good SERPs
- Subject: Why TagCloud is important for good SERPs
- Replies: 10
- Views: 948
Posted: October 2nd, 2011, 11:39 am
Don't you think you should count the occurrences to determine the popularity instead of throwing out a random number?
- SpooF
- Forum: Microsoft Windows Forum
- Topic: Regedit & MSconfig Close instantly in Windows 7
- Subject: Regedit & MSconfig Close instantly in Windows 7
- Replies: 1
- Views: 2136
Posted: September 24th, 2011, 1:37 pm
This looks suspicious to me.
Quote:
C:\Windows\system32\rundll32.exe
C:\Users\NickChezHome\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Windows\system32\RunDll32.exe
C:\Users\NickChezHome\AppData\Local\Google\Chrome\Application\chrome.exe
C:\Windows\system32\RunDll32.exe
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: [PAYING] Can someone make this for me
- Subject: [PAYING] Can someone make this for me
- Replies: 6
- Views: 687
Posted: September 15th, 2011, 10:18 pm
If you store PHP code in a database and need to have it executed check out eval.
However you should not do this.
However you should not do this.
- SpooF
- Forum: Website Hosting Forum
- Topic: MySQL "bind-address", auto-bind
- Subject: MySQL "bind-address", auto-bind
- Replies: 4
- Views: 9795
- Subject: MySQL "bind-address", auto-bind
Posted: September 10th, 2011, 11:15 am
You should be able to set to it to 'bind-address = 0.0.0.0' and it will bind to what ever it can.
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: Javascript work around
- Subject: Javascript work around
- Replies: 5
- Views: 989
- Subject: Javascript work around
Posted: September 9th, 2011, 10:42 pm
You don't need to use the keyword function for the first one.
Code: [ Select ]
<script language="javascript">
window.onload = function() {
setInterval(heart, 1000);
}
function heart()
{
// stuff here
}
</script>
window.onload = function() {
setInterval(heart, 1000);
}
function heart()
{
// stuff here
}
</script>
- <script language="javascript">
- window.onload = function() {
- setInterval(heart, 1000);
- }
- function heart()
- {
- // stuff here
- }
- </script>
- SpooF
- Forum: Programming / Scripting / Coding Forum
- Topic: [I'm] Currently looking into [This language/tool/tech etc]
- Subject: [I'm] Currently looking into [This language/tool/tech etc]
- Replies: 4
- Views: 740
Posted: September 6th, 2011, 1:21 pm
NodeJS |- http://nodejs.org Node.js is a server-side JavaScript environment that uses an asynchronous event-driven model. This allows Node.js to get excellent performance based on the architectures of many Internet applications. jQuery Mobile |- http://jquerymobile.com/ Coffee Scripts |- http://jash...
