Search results

  1. xmakina

    How did you learn PHP

    Salvatos: You're gonna need some experience with Linus to do this: 1) Get VMWare Server 2) Get Ubuntu 8.04 LTS Server Edition 3) Create a Virtual Machine and install an Ubuntu LAMP (Linux, Apache, MySQL, PHP) server on it, it'll be an option when installing. Use this page if you need more...
  2. xmakina

    Ads allowed?

    adsense doesn't work on Facebook as they don't allow Javascript. I've tried everything up to and including downloading the JS off Google and running straight off my page but no dice. If you want adsense on FaceBook run it in an IFrame, just be sure to fill the iFrame meta tags with all the...
  3. xmakina

    How did you learn PHP

    In all honesty, I wouldn't recommend a book for a language as popular as PHP. It really depends on your learning style. I'm very kinasthetic, I learn a lot quicker when given a tangible response. So I find it much more useful to copy some source code, look at the result, make a change and see...
  4. xmakina

    Help with a custom module for phpnuke

    Er... you remembered to check for the OP value and then call the SaveEditSpecial function, right?
  5. xmakina

    php help

    Just before$map_query = mysql_query("SELECT * FROM map WHERE co-ords_long = '$co_long' AND co-ords_lat = '$co_lat'"); place the line echo "<p>SQL = SELECT * FROM map WHERE co-ords_long = '$co_long' AND co-ords_lat = '$co_lat'</p>"; Take the echo'd SQL statement and (if you can't see any glaring...
  6. xmakina

    Review Script

    I'll take this on. Drop me a message :)
  7. xmakina

    PGSQL and Errors ._.

    The thing with database errors is they're caused by your SQL AND your database itself, so you *really* need to tell us what your SQL command was and what the error was before people can, realistically, help.
  8. xmakina

    BandTrack (Facebook App)

    Guys? :(
  9. xmakina

    MYSQL/PHP to Simple Form

    Er... You missed what I said there. I meant if you run the script on your WEBSITE and the SQL is invalid it will echo the contents of the variable $sql which is what you put into phpMyAdmin So if something is wrong your Website will say SQL Error <SQL STATEMENT> <SQL ERROR DESCRIPTION> Put...
  10. xmakina

    [Site For Review] Tittat here

    There's a bit of an issue on your Welcome div - the FEATURED GAME text is behind the game icon. Your mascot has lots of white around him - he could do with a little clean up. Everything else looks pretty good. I like how the buttons stack if there's not enough room across the width of the...
  11. xmakina

    MYSQL/PHP to Simple Form

    <?php function addStore($name, $address, $city, $state, $zip, $phone){ $db_server = "localhost"; $db_name = "DBName"; //CHANGE THIS $db_user = "UserName"; //CHANGE THIS $db_pass = "password"; //CHANGE THIS $con = mysql_connect($db_server, $db_user, $db_pass) or die(mysql_error())...
  12. xmakina

    Tafe Student - Streeware clothing site

    That, my friend, is an *awful* attitude to web design. The whole pont of a website is global reach, being as accessible to as many people as possible. Ignoring resolutions under 1024 is just lazy, especially when it's caused by a major problem in the CSS. Content should be pressed up to the...
  13. xmakina

    Have a look and let me know

    The website is *very* amaeteur. The whole "What is your name?" javascript was one of the first things we covered in school when I was 13. Remove it, it's incredibly unprofessional. The layout is dire. The whole website is Web 0.5. Go to www.w3schools.com and read up on CSS. I'd also recommend...
  14. xmakina

    Tafe Student - Streeware clothing site

    I have a hunch. Change your window size, make it as thin as possible and content starts falling off the left side of the window :S
  15. xmakina

    joomla templates

    Go to google. Enter "free joomla templates" Search through results what you consider "quality" ??? PROFIT!
  16. xmakina

    PHP MYSQL WHERE statement help

    PROTIP; when in doubt: *echo the SQL *Drop it into phpMyAdmin's SQL tool *Find error quicker :)
  17. xmakina

    [PHP] Using it in forms!

    Okay. Your problem is *somewhere* in your SQL statement. That means we're pretty much unable to help you because we'd need to know the layout of your database. So; make your app echo your SQL statement before processing. Look in the echod string for any obvious SQL errors. If you can see one...
  18. xmakina

    [Help] Random Database?

    Information schema is the database the database uses to understand what's in the database. Bizzarre? You bet but it's system critical. Do *NOT* mess with it.
  19. xmakina

    Tafe Student - Streeware clothing site

    The reason it's pointless is that, in my experience anyway, academics require your site to fit to their marking scheme, even if that is grossly different to standard (or even good) practice. When it's homework you're much better off doing what gets the best mark than what is best. Just make...
Top