Search results

  1. ScottW

    PHP & MySQL Problem

    Go back and read my posts very carefully, make sure you have dotted all your i's and crossed all your t's. Then I will help you further. Your attachments clue me in that your not following my instructions.
  2. ScottW

    PHP & MySQL Problem

    You have web sharing turned on right?
  3. ScottW

    PHP & MySQL Problem

    In your web sharing, when you turn it on, it gives you the URL of your site. If localhost doesn't work, try: 127.0.0.1 in place of localhost, or use the link Apple gives you in web sharing.
  4. ScottW

    PHP & MySQL Problem

    If all you see is the PHP code you typed and no output... Go to terminal and edit this file: sudo nano -w /private/etc/apache2/httpd.conf type in your password when it asks... Control-w (for searching in Nano), then type 'php' and hit return You will see this: #LoadModule php5_module...
  5. ScottW

    PHP & MySQL Problem

    Yea, that's what I said earlier... you can't call it with file:///, PHP files are "parsed" by a web server and loading a page in your browser directly means your browser is just reading the file and it is clueless on what to do with it. If you have web sharing turned on: Try this...
  6. ScottW

    PHP & MySQL Problem

    What do you mean nothing happens. Do you get a blank page or do you see your PHP code displayed in plain text? Where is your file at, how are you calling it in the browser, more info would be helpful.
  7. ScottW

    PHP & MySQL Problem

    Load it in your browser... remember, these PHP pages must be served by a web server (usually apache), simply loading them in your browser with file:/// is not going to work, it will need to be an http call.
  8. ScottW

    PHP & MySQL Problem

    To know if your system is parsing the PHP, just put <? phpinfo(); ?> on a page called (for example) phpinfo.php and call it and see if it displays anything.
  9. ScottW

    PHP & MySQL Problem

    Or just: <?php echo $_POST[fname]; ?> ALSO SHOULD WORK <?php print "$_POST[fname]"; ?> to view all form data in an array: print_r($_POST);
  10. ScottW

    New MacBook Pro & MacBook take-apart guides

    Got a chance to see the new MB and MB Pro in person at the Apple Store and they are really slick. First time in a long time I have been tempted to purchase on impulse. :) The trackpad is awesome and does just seem to work great. I love the 4 finger mode of expose/hide windows. Very slick.
  11. ScottW

    Avatar Problem

    Sorry for the delay on this, it should be working now.
  12. ScottW

    What's Running in Your Dock, Right Now?

    Yes, all applications I listed in the first post where running. I didn't include applications NOT running which include... System Preferences Transmit Photoshop Skype Quicktime MacCaching Parallels I tend to just leave everything running... but when you have a Mac and a stable machine what can...
  13. ScottW

    What's Running in Your Dock, Right Now?

    Here is an interesting thread, what is running in your Doc at this moment? Finder Leap RingCentral Call Controller QuickSilver iTerm Mail.app iCal Address Book OmniFocus Coda OfficeTime Yojimbo BBEdit Adium Safari 1Password Firefox Preview iTunes EyeTV AliveChat Interarchy NetNewsWire OmniPlan...
Back
Top