Search results

  1. xav0989

    Help with php function

    @zyreena We usually don`t close the posts, as somebody migth need to add something, or add precision. We only close them went there is a clear misconduct toward the rules.
  2. xav0989

    fourms

    You should also specify what will be the goal of the form.
  3. xav0989

    Help me with this pls

    just for the record, teensweb, you could have used the str_split function to separate the string into an array.
  4. xav0989

    Problem Locating Header/Footer Files

    I simply do a define('ROOT', '../'); and include files doing <?php include(ROOT . 'header.php'); ?> /*Body*/ <?php include(ROOT . 'footer.php'); ?>
  5. xav0989

    adding data to a database

    You check if " $_POST['submit'] " is set, but in you code, you set the name of the submit to " Submit1 ". change one of the two, and you should be good.
  6. xav0989

    php

    @jagosof try to use the CODE or the PHP tags next time
  7. xav0989

    PHP: Putting Variable into Hyperlink Text Problem

    IF you run into more problems, post the complete login script here.
  8. xav0989

    E-mail Flash Form with PHP3

    Well first of all, php3 is not supported anymore, so you could try to find one using php5
  9. xav0989

    Help creating PHP code

    You hade missed some points, and some variables wheren't initialized. Here is an updated script:<?php session_start(); if (isset($_SESSION['user'])) { header("Location: view.php?id=" . $_SESSION['user_id']); exit(); } include 'dbc.php'; $user_name =...
  10. xav0989

    PHP: Putting Variable into Hyperlink Text Problem

    make sure you have a running session. When I build session-based apps, I create a session class that contains only the function to start a session, and I include it in all the pages. Here is some sample code:function start($cookieName = 'php-session-handle', $time = 3600, $dir =...
  11. xav0989

    Dreamweaver remote Mysql

    I've created a script that allows some remote mysql connection. More info on the topic http://forums.x10hosting.com/programming-help/95629-x10hosting-mysql-remote-odbc-access.html
  12. xav0989

    x10hosting MySQL remote odbc access

    I've changed the page of the scripts. If you want the server part (the part that connects to the database, the link is http://afrosoft.co.cc/script/en/mp-server If you want the client, or the script that connects to the mp-server, the link is http://afrosoft.co.cc/script/en/mp-client
  13. xav0989

    X10hosting server very slow and Often Not Responding

    or, if you can't afford, or don't want to pay, setup a cache system. It will slightly improve the performance of your scripts if you have big scripts, are loading a lot of content, doing a lot of queries and parsing some template files.
  14. xav0989

    cant login to accounts panel, anyone else?

    Could a moderator close this please.
  15. xav0989

    Problems moving domain.

    I am still seeing the RSS
  16. xav0989

    Downloading a backup.

    Oh ya, I forgot, they removed it with the site upgrades... well, I would say to post a support ticket. However, if you want a real hard copy backup, then zip everything in you home directory, and download it.
  17. xav0989

    frequent downtime

    Well I can access it, and I am on stoli as well. I had some problems with the old server, but since they changed it, I have a really small downtime. Try over and over to login into the support desk ( http://support.x10hosting.com/ ) with both your cPanel and forum login, since I am not sure...
  18. xav0989

    Image Verification *captach* not working

    add error_reporting(E_ALL); just after the <?, browse to the image script, post any error message and delete the line you added.
  19. xav0989

    Downloading a backup.

    I believe you can do a full backup and download it afterwards.
  20. xav0989

    I don't receive emails from friends because of the ASSP

    Setup up a google app for you domain, edit the MX record, and voila.
Top