Recent content by MichaelG

  1. MichaelG

    Full-time PHP/mySQL Developer required in Bracknell

    Becoming an integral member of our small team, you will relish the opportunity of working on and delivery both innovative web2.0 applications for emerging SME's and start-ups through to large-scale client projects with big name clients. If you have the necessary technical skills detailed...
  2. MichaelG

    Calling all web gurus: I need your help (CSS)

    I am sooooooooooo like you - easily distracted by the fun stuff ;) This assumption is not right. The only constraint on image size is (exactly multiples of 50px) I will do this as soon as possible. I need to finish building a CRM for next week - so if you hear nothing from me for a...
  3. MichaelG

    Calling all web gurus: I need your help (CSS)

    Dotty and Firefleur, The OP has not gone away. I have been watching and I have been trying a different methods to get the effect I wanted. Time was an issue - so this is what I ended up with as a quick solution to this problem. # I created X pre-made grid patterns (a CSS template). # I...
  4. MichaelG

    Calling all web gurus: I need your help (CSS)

    This is exactly what the application will do. Thanks Dotty. I have tried the table/cell idea and I still get this to work. I might need to push this problem out to the wider tech community - if a solution is found, I will make the code open-source. No problems.
  5. MichaelG

    Calling all web gurus: I need your help (CSS)

    FireFleur, If I go the table route as a short-cut to this problem, will this work? 01: Create a table with x rows and x columns - each cell is 50 x 50 02: I get the first image and work out how many cells I need for the width and height of the image by dividing the height and width by 50 -...
  6. MichaelG

    Calling all web gurus: I need your help (CSS)

    Hi Trevor please http://www.ebusinesswebsite.co.uk/csstest.php do a refresh to see what I am trying to do.
  7. MichaelG

    Calling all web gurus: I need your help (CSS)

    I am already using floats and divs - see source code.
  8. MichaelG

    Calling all web gurus: I need your help (CSS)

    I have a challenge for all you web design gurus in here. The demo page: http://www.ebusinesswebsite.co.uk/csstest.php The challenge: I need to be able to create a nice grid with images of different heights using CSS - where the images are positioned together. Right now, images are...
  9. MichaelG

    Product pages redirect

    Looking at http://petshop2u.co.uk - try adding something like this to the top of proddetail.php <?php if ($_GET['prod']) { $row = mysql_fetch_array(mysql_query("SELECT productname FROM producttable WHERE productname = '".str_replace("_"," ",$_GET['prod'])."'")); if (!$row['productname'])...
  10. MichaelG

    Post removed

    This issue has been resolved. The mods on the forum have explained through various PMs - please mods can you lock this post.
  11. MichaelG

    JOb needed

    £1000 - an insult! I know there is a credit crunch, but this is taking the biscuit! I say the above because I know the amount of time and effort serious web developers put-in to keep up their knowledge to ensure they deliver a very good service to clients. I hate it when people think building...
  12. MichaelG

    Blank Screen

    01: Check your PHP and Apache error logs. 02: Read http://www.associate-o-matic.com/docs/doc_troubleshooting.html (see below) Troubleshooting Are you seeing a blank white screen while running shop.php or admin.php or errors on screen? The blank screen means PHP has thrown an error. To...
  13. MichaelG

    netbooks mini laptops

    I have a Samsung NC10 - light and great battery life - it has replaced my laptop. I only bought the Samsung for battery life.
  14. MichaelG

    The future according to Microsoft?

    Love it! I better start thinking about buying shares in a company that produces cleaning products - that's a lot a glass ;)
  15. MichaelG

    Screen Scraping - help please

    It all depends on what you data you want and what you want to do with the data. You might consider doing a dynamic scrap - where users search for a product on your website, your script visits all 3rd party websites to search for the product and get the price matching the product name. Any...