Jump to content

JonnoTheDev

Staff Alumni
  • Posts

    3,584
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by JonnoTheDev

  1. Not really had a good listed to Attack & Release. Have Thickfreakness & Rubber Factory in the car
  2. Yeah, saw them at the Academy in Manchester. Great. Best album is Rubber Factory IMO.
  3. There are millions of free proxy addresses http://www.google.co.uk/search?sourceid=chrome&ie=UTF-8&q=proxy+lists
  4. Submit a Google sitemap. This is explained in the webmaster tools. Make sure that you redirect any old urls to their new versions.
  5. No. When the form is submitted, validate the data. Capture any errors in lets say an array. If there are errors simply re-display the same page with the errors next to the form or wherever you want to. Only when the form validates successfully should you save the data and redirect the user to a success screen. This is basic stuff. I would strongly recommend going through a few tutorials if you are struggling. http://www.google.co.uk/search?q=php+form+validation+tutorial
  6. VB: Visual Bollox
  7. Then you must run a SELECT query prior to an INSERT. $x = mysql_query("SELECT id FROM users WHERE name='Neil Johnson'"); if(mysql_num_rows($x)) { print "You are already in my database"; } else { mysql_query("INSERT INTO users SET name='Neil Johnson'"); print "You have been added to my database"; }
  8. Type cast the object as an array $x = new object(); $x->name = "Neil"; $x->age = 29; $y = (array)$x; print_r($y);
  9. Also, make sure you exit after a header redirect header("location:http://xyz.com/nrt-home-view-racesToDo.php?class_name=$class_name"); exit();
  10. If a database field is a unique primary key it cannot accept duplicate entries. i.e You cannot have a users table with two users having an id (primary key) of 1. You must not attempt to insert records containing a key that is already in use. Use an auto-increment on the primary key, or generate the key before each insert.
  11. If you know what you say you know then I do not understand why you are asking this question. If you are familiar with C++ then you should be able to create an EPOS interface with ease. The rest are web technologies, not for desktop applications.
  12. Most likely Visual Basic. Years ago I setup an EPOS for a garden centre. Had to go on a training course for the software, which looked very similar.
  13. Take a look at http://cruisecontrol.sourceforge.net/ http://phpundercontrol.org
  14. OK, see what you're saying
  15. A report has a layout. The use of table elements creates that layout.
  16. If you were creating a report for a web admin, lets say in a CMS system, that shows the top ten users on your website, number of pages viewed, last login time etc, and you want in a spreadsheet style view with headings for totals, etc. Are you going to do this using a table element or div elements with a complex stylesheet for positioning. Consider that the end user may want to add extra heading columns. I agree that a website should not be constructed entirely using table elements for positioning and layout, however they do have their purpose. If I want to present data in a table format that usually comes from a database then the table element is a simple and hassle free option.
  17. No, because it is just a toy with no purpose. I would get an iPhone.
  18. Start by removing elemets from the page, such as the search script, etc. If the page load time decreases then you will be able to pinpoint the bottleneck as you restore elements of the script.
  19. This is the Misc board. Unusual that it is the first post though.
  20. Never understood why people would want a netbook over a laptop. They don't have internal DVD drives so if you want to watch a film on the go you have to plug in an external drive (that adds to the price), plus you have a drive hanging off. Fine for the net and checking email, thats about it. To be honest I would stick a few more quid in the budget and get an entry level laptop that has a decent battery life. It will have a better spec. Between the two netbooks you have selected there is no difference. I would personally go for the Dell if I had to purely because the support is good on their website. Most of our office machines are Dell.
  21. Football fans, pick your dream world cup team. Iker Casillas (ESP) Carles Puyol (ESP) John Terry (ENG) Ricardo Carvalho (POR) Ashley Cole (ENG) Cristiano Ronaldo (POR) Steven Gerrard (ENG) Andres Iniesta (ESP) Kaka (BRA) Lionel Messi (ARG) Wayne Rooney (ENG)
  22. Don't think much of this live version, but hey, the guys pretty cool even if he's not the greatest singer. I hear he recorded his album at Bob Marleys house, nice. The original tune with all the production values and autotune, effects slapped all over it sounds good as you would expect. It's really catchy and quite uplifting. the only thing is that every time I hear this it reminds me of playing FIFA football. For those of you who are not football or soccer fans, this is one of the anthems for the 2010 FIFA World Cup in South Africa. That is why there are comments on the video shaped like flags, as that it the name of the damn song, 'wavin flag'. Come on England!
  23. I'll walk you Well, what can I say. Ze Germans stole the barbeque. Bad luck socceroos.
  24. I fell asleep during the Slovenia game, my god that was painful. Even worse goalkeeping. If we dont get a result against those 2, well i'll probably kill myself. We should end up with the Aussies next round, don't fancy the Germans if USA get a better goal difference, cos I can see them winning the next 2 games also.
  25. Friggin draw against USA. What was all that about. After Gerrard's opener I thought it would be a 6 niller. What a shocker by Rob Green, and Carrager got skinned a couple of times. Typical!
×
×
  • 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.