Search results

  1. A

    HTML/CSS issue

    So, I have a page which looks fine in most browsers, but has problems with Internet Explorer and Opera. This contains screenshots of all of the browsers, etc. http://browsershots.org/http://www.attackbunnygames.com/test.php This is the CSS that is probably affecting it: body { font-family...
  2. A

    .htaccess

    I can't find mine. I'm not sure if this is the correct forum, but it didn't seem to fit. I've looked in public_html, and I can't find the file. Where is it generally located? EDIT: Agh. Didn't realize that x10 automatically hid this file. Please close this thread.
  3. A

    [PHP]: Having a problem with fwrite()

    <?php $forumName = $_POST['forumName']; if(!$forumName){ echo "fail"; } mysql_connect('localhost','username','password'); mysql_select_db('abp_main'); mysql_query("INSERT INTO forum_forums VALUES(NULL, '$forumName')"); $affectedRows = mysql_affected_rows(); $query1 = mysql_query("SELECT *...
  4. A

    MySQL or PHP problem

    I'm attempting to create a login script, but I can't seem to use mysql_num_rows or mysql_fetch_assoc. Here's my script: <?php $username=$_POST['username']; $password=$_POST['password']; if(!$username || !$password){ header("Location: http://www.attackbunnypro.x10hosting.com/admin/"); }...
Top