Search results

  1. gomarc

    Greetings

    Welcome to x10 davidandkaren! Actually, you’re not required to post. You are only required to login. And if you wish not to login for a year, you can purchase an upgrade that removes the need to login to the Forums for U$S 3. Here is the link http://x10hosting.com/upgrade.php
  2. gomarc

    Forum log-in?

    You are welcome risendead. See you around!
  3. gomarc

    Help with php function

    Maybe you missed misson’s link to variable functions, so just in case, here you go: <?php $what_bar = 'your bar'; $POINTER = 'rebelbar'; $POINTER($what_bar); // This calls function rebelbar() function rebelbar($what_bar) { echo "not just rebelbar, $what_bar rebelbar.\n"; } ?>
  4. gomarc

    Forum log-in?

    You are just required to login. For U$S 3, X10 also gives you the option to purchase an upgrade that removes the need to login to the Forums for one year. Here is the link http://x10hosting.com/upgrade.php
  5. gomarc

    MySQL database address

    For security reasons, x10 will not allow remote MySQL connections on free accounts.
  6. gomarc

    beginners guide to .css styling

    I hope you will continue your tutorial. It's very clear and simple to follow. Thanks!
  7. gomarc

    a good php programming website

    Have you tried w3schools.com ?
  8. gomarc

    Forums

    You are just required to login. For U$S 3, X10 also gives you the option to purchase an upgrade that removes the need to login to the Forums for one year. Here is the link http://x10hosting.com/upgrade.php
  9. gomarc

    20 Creds to download a 4MB file

    Credits received. Thank you frznmnky!
  10. gomarc

    Get 50 Credits to register and 50 for each day you post!

    Thanks Rebel21! Credits received.
  11. gomarc

    Get 50 Credits to register and 50 for each day you post!

    Signed up as marc, with one post so far.
  12. gomarc

    20 Creds to download a 4MB file

    File Codecs.zip downloaded.
  13. gomarc

    Favicon Help

    In your html <head> try including <link rel="shortcut icon" href="favicon.ico">
  14. gomarc

    file_get_contents()

    On failure, file_get_contents() will return FALSE. You can do something like this: $info = file_get_contents('http://www.site.com/updates/index.php') or exit("</br> Unable to check updates at this time."); //there is no error, continue echo $info;
  15. gomarc

    site visitors

    On your CPanel, check your Awstats. Lots of info there.
  16. gomarc

    Edit a file with a form

    <?php //Variables to edit $filename = "file2edit.txt"; //File to edit $startmark= "<!--Load from here-->"; $endmark = "<!--Load to here-->"; $source = file_get_contents($filename) or exit("</br>Problem reading <b>'".$filename."'</b> (check file name)"); $fstart = strpos($source...
  17. gomarc

    Looking for OFFICIAL XP Theme

    Maybe the Microsoft Zune Theme? Preview: http://www.metacafe.com/watch/321232/black_xp_theme_free_windows_xp/ Download and review CNet http://download.cnet.com/Microsoft-Zune-Theme/3000-2319_4-10818187.html
  18. gomarc

    restrict access to a page unless from...

    They are many ways to restrict access to your web pages or to protect just part of your site. This may be what you are looking for: How can I use a .htaccess file to restrict access by the user's location? Just be careful when using the .htaccess file.
  19. gomarc

    phpBB

    Try "localhost"
  20. gomarc

    ftp problems

    Say your website is http://mysite.elementfx.com/ and your CPanel Name is : bruce with password : mypassword Your FTP setting will be: Host / IP / URL: ftp.mysite.elementfx.com Username: bruce password : mypassword You can manage your FTP accounts at CPanel => Files => FTP Accounts
Top