Jump to content

Vag

Trade With Caution
  • Posts

    977
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Vag

  1. That is exactly why the was playing the key role in the comment. It was a joke.
  2. you must be very pervert.
  3. Vag

    hmm

    Does this make developers black?
  4. Yes I bragged by saying Your HTML is not valid in the chat. Please don't be so death serious.
  5. Chatbox license is expired. We are waiting for admin to extend the license.
  6. Just finished downloading and setting up all the software I need. Aptana Studio is already connected to remote server.
  7. Listen up son, A Web Developer is not a designer. Have you ever heard of Bootstrap?
  8. You can set a Cronjob to run the queries automaticly on specific time. http://www.thesitewizard.com/general/set-cron-job.shtml
  9. Arctica is pro in everything. For real, this is my developing enviroment for web-related stoff. Please visit out home page here. We were unable to afford a domain name.
  10. You could do something like this View what $current value is Inject $new_value Sum up $current and $new_value Insert $result in to the database Let me know how this goes. <?php $current = "30"; $new_value = "3000"; $result = $current + $new_value; $sql = "INSERT INTO DynSig ('$result') ?> Something like this would do the trick. Injecting the variables from your script will be left up to you.
  11. Sorry I was too fuzzy but here you go. Add this before the mysqli_close if (mysqli_query($conn, $sql)) { echo "Record added to the Database"; } else { echo "Error: " . $sql . "<br>" . mysqli_error($conn); }
  12. //Simple insert-into database via mysqli by Kosti Wessman <?php //Connection details $servername = "hostlelocal"; $username = "nameleuser"; $password = "wordlepass"; $dbname = "baseledata"; //Variable conn is used to determine the new mysql connection for above data $conn = new mysqli($servername, $username, $password, $dbname); //Checking if the connection is valid, if not, killing the process and throwing a error message if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } //Query for inserting the wanted data into the mysql - Where DynSig is the table name $sql = "INSERT INTO DynSig (xp_gained, time_run, fish_caught) VALUES ('value1', 'value2', 'value3')"; //Values 1, 2 and 3 are in order where xp_gained, time_run, fish_caught //Closing the connection.. :P $conn->close(); ?> This should do the trick. Just create variables for the value1, value2 and value3 to make it autoupdate from your script. //Query for inserting the wanted data into the mysql - Where DynSig is the table name $sql = "UPDATE DynSig SET value_name='valuehere' WHERE id='userid'"; //For the update you requested. misread first time
  13. Actually to be honest, the grey looks better than the white name :P
  14. No need to argue. OSD rank holder has proven to be more dedicated / advanced in scripting than SDN Scripters.
  15. Not as much as you did last night.
  16. @Acerd How would your fusion look like? - A 13 year old Finnish male Are you good or evil? - Such evil much good What is your purpose? - Ich bin der gummybear
  17. This is not true at all. OVH-SAS and many other big names on the industry offer 4GB RAM 4vCores @Xeon E5 3.7Ghz for under 20 euros. 8GB with 6vCores would be around 35 Euros. For 100 dollars you can get the following dedicated server from UK, EU or US Intel Xeon E5-1620v2 64GB ECC 1600MHZ 2x 2TB HDD 1Gbps OVH-SAS Network which is around 10x stronger than the scandinavian core network 256 IPs for Reselling And these resources are dedicated not shared. Eg if you buy a Virtual Server you will share your 4vCores with many people, which is always bad. This is nothing personal just pure facts as your marketing tactic is clearly misleading. Edit. Also I am not saying that people should not buy virtual servers as they are optimal for botting due their low price.
  18. No. How ever, hiding posts from blocked user is awesome.
  19. This counts in the same gategory as "Loaning Money - Pay Back 5% extra -> asking to be scammed. For this to work would need to be something like this: Only cover the fees when scammer has 50+ feedback etc. Otherways this wont work. People commit insurance fraud in real world every minute so why do you except this to work in a internet community :P
  20. Vag

    Vip

    Yeh. Happened to me also, tho I was VIP and just cancelled my VIP subscribtion.
×
×
  • Create New...