Jul 26, 2008

How Do I Script A Tutorial Submit Site

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > Others

free web hosting

How Do I Script A Tutorial Submit Site

msabas
I am very interested in learning how to create or start my own tutorial submitt site. What do I need to learn ? What do I need to have.

Is there a script that can be made up or a software?

What I would like to do is start my own tutorial submit site. something similar to good-tutorials and or pixel2life except those sites are really big and cover many tutoriasl for many different programs. Id like to just cover tutorials for maybe a total of 3 to 4 different programs. Im sure I need hosting a domain a site and some good forums to get something good going.

But the main thing i need is the script on how to create this Tutorial Submit site

So I ask does anyone know what or how I go about creating this, or does anyone know of any site links that you can direct me too. Itried google and I could not find anything. the only thing it would pull was actuall sites.

Reply

rvalkass
Your best bet for a tutorial site would be a MySQL database holding information such as the software the tutorial is for, the author, contact information, the title of the tutorial, and a URL for the tutorial. You would also want to have a comments system where people can post comments for each tutorial, if part of it is wrong etc. You would then probably use PHP to get the information out of the database and display it however you want.

I don't know of any pre-made scripts that will do this for you, but I have never had to look for one. If you do try and make it yourself it may take a while, and you will need good knowledge of PHP and MySQL.

Reply

Plenoptic
For any tutorial for php I would recoommend going to http://pixel2life.com There I found a tutorial on how to make a tutorial system. You can find that tutorial here. http://www.pixelfull.com/tutorials.php?tutorial=view&id=8 You need to know PHP and MySQL. You can use that as an example or temporarily until you can make one.

Reply

msabas
check this put guys i found this information on a different website. the only thing i dont know whow to do is creat the mysql tables

can some one do that for me or tell me how to do it

QUOTE
Welcome to the complete Tutorial System Management tutorial!
This tutorial will help you make a rather nice tutorial management system.

Features include:

Categories
Comments
Admin Panel

First off, we gotta make some MySQL tables.

First table:
CODE
CREATE TABLE `tutorials` (
`id` int(250) NOT NULL auto_increment,
`submitter` varchar(250) NOT NULL,
`text` text NOT NULL,
`short_description` text NOT NULL,
`title` varchar(250) NOT NULL,
`cat_id` int(25) NOT NULL,
`date_submitted` varchar(250) NOT NULL,
`time_submitted` varchar(250) NOT NULL,
`show_email` tinyint(1) NOT NULL,
`email` varchar(250) NOT NULL,
`views` int(250) NOT NULL default '0',
`is_validated` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM;


This sets up the table where all of the actual tutorials will be stored.

Second table:
CODE
CREATE TABLE `tutorials_categorys` (
`id` int(25) NOT NULL auto_increment,
`category` varchar(250) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM;


This table will make the tutorial categorys, in which the different tutorials will be shown!

Third table:
CODE
CREATE TABLE `tutorials_comments` (
`id` int(250) NOT NULL auto_increment,
`tut_id` int(250) NOT NULL,
`submitter` varchar(250) NOT NULL,
`text` text NOT NULL,
`time_submitted` varchar(250) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM;


This table will store all the tutorial comments in which we can later display them!

Alrighty, now, onto the coding. First off, we are going to want to make a file called tutorials.php.
We will be using switch() for our navigation system in this, and if you don't like it, replace it with your own.

Here is the code:

tutorials.php
php code:
CODE

<?php
//------------------------------------------
//database connection
mysql_connect("localhost", "username", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
//end database connection
//------------------------------------------

//------------------------------------------
//echo out a navigation panel
echo "
<center><a href='tutorials.php'>View Categorys</a> | <a href='tutorials.php?action=addtutorial'>Add Tutorial</a></center>
";
//------------------------------------------

//------------------------------------------
//begin main navigation (tutorials.php?action=)

switch($_GET['action'])
{
    //------------------------------------------
    //this case adds a tutorial.
    //pretty self-explanitory
    //------------------------------------------
    case "addtutorial":
    //if the form to enter a new
    //tutorial hasn't been submitted,
    //show it
    if(!isset($_POST['add_tutorial']))
    {
        echo "
        <table border='0' cellpadding='0' cellspacing='0' width='500'>
        <form action='$self?action=addtutorial' method='post'>
            <tr>
                <td>Name:</td>
                <td><input type='text' name='name'></td>
            </tr>
            <tr>
                <td>Title:</td>
                <td><input type='text' name='title'></td>
            </tr>
            <tr>
                <td>Category:</td>
                <td>
                    <select name='category'>
                        ";
                //now what we are doing here is looping through
                //the categorys table and getting all the
                //categorys and putting them into a select
                //so the user can select which category
                //the tutorial is on
                $query = mysql_query("SELECT * FROM tutorials_categorys ORDER BY id ASC") or die(mysql_error());
                while($row = mysql_fetch_array($query))
                {
                    echo "<option value='$row[id]'>$row[category]";
                }
                        echo "
                    </select>
                </td>
            </tr>
                <tr>
                <td>Tutorial:</td>
                <td><textarea name='tutorial' cols='40' rows='10'></textarea></td>
            </tr>
            </tr>
                <tr>
                <td>Short Description:</td>
                <td><textarea name='short_description' cols='40' rows='2'></textarea></td>
            </tr>
            <tr>
                <td>Email:</td>
                <td><input type='text' name='email' maxlength='50'></td>
            </tr>
            <tr>
                <td>Show Email?</td>
                <td><input type='checkbox' name='show_email' value='1' checked></td>
            </tr>
            <tr>
                <td colspan='2'><center><input type='submit' name='add_tutorial' value='Submit New Tutorial'></center></td>
            </tr>
        </form>
        </table>
        ";
    }
    //else, error check, enter it
    elseif(isset($_POST['add_tutorial']))
    {
        $name = mysql_real_escape_string(strip_tags($_POST['name']));
        $title = mysql_real_escape_string(strip_tags($_POST['title']));
        $category = mysql_real_escape_string(strip_tags($_POST['category']));
        $tutorial = mysql_real_escape_string(strip_tags($_POST['tutorial']));
        $short_description = mysql_real_escape_string(strip_tags($_POST['short_description']));
        $email = mysql_real_escape_string(strip_tags($_POST['email']));
        $show_email = mysql_real_escape_string($_POST['show_email']);
        $date = date("m/d/Y");
        $time = time();

        //we begin error checking....
        $error_msg = array();
        if(empty($name))
        {
            $error_msg[] = "Please insert a name!<br />";
        }
        if(empty($title))
        {
            $error_msg[] = "Please insert a title!<br />";
        }
        if(empty($category))
        {
            $error_msg[] = "Please insert a category!<br />";
        }
        if(empty($tutorial))
        {
            $error_msg[] = "Please insert the tutorial text!<br />";
        }
        if(empty($short_description))
        {
            $error_msg[] = "Please insert a short description!<br />";
        }
        if(empty($email))
        {
            $error_msg[] = "Please insert an email!<br />";
        }
        //print the errors, if any
        if(count($error_msg)>0)
        {
            echo "<strong>ERROR:</strong><br>n";
            foreach($error_msg as $err)
                echo "$err";
        }
        //everythings ok, insert it to the DB
        else
        {
            $sql = "INSERT INTO tutorials (submitter, text, short_description, title, cat_id, date_submitted, time_submitted, show_email, email, is_validated) VALUES ('$name', '$tutorial', '$short_description', '$title', '$category', '$date', '$time', '$show_email', '$email', '0')";
            mysql_query($sql) or die(mysql_error());
            echo "Tutorial added for review!";
        }
    }
    break;

    //------------------------------------------
    //this case gets the specified [ID] in the url
    //(tutorials.php?action=viewcategory&id=[ID]
    //and gets all the tutorials listed under that
    //category ID (cat_id)
    //------------------------------------------
    case "viewcategory":
    //if there is an ID given...
    if($_GET['id'])
    {
        //get the id, put it into a variable, cast to an INT
        //(for security purposes)
        $id = (int)$_GET['id'];
        $query = mysql_query("SELECT * FROM tutorials WHERE cat_id = '$id' AND is_validated = '1'") or die(mysql_error());

        //if no results, show that there are no tutorials
        //for that category
        if(mysql_num_rows($query) == 0)
        {
            echo "No tutorials for this category yet!";
        }
        //else, there is..show em
        else
        {
            echo "<h1>Tutorials</h1>";
            //loop through the tutorials
            //show all tutorials
            echo "<table border='0' cellpadding='0' cellspacing='0' width='500'>";
            while($row = mysql_fetch_array($query))
            {
                echo "
                    <tr>
                        <td>Title:</td>
                        <td><b>$row[title]</b></td>
                    </tr>
                    <tr>
                        <td>Date Submitted:</td>
                        <td><b>$row[date_submitted]</b></td>
                    </tr>
                    <tr>
                        <td>Views:</td>
                        <td>$row[views]</td>
                    </tr>
                    <tr>
                        <td>Short Description:</td>
                        <td>$row[short_description]</td>
                    </tr>
                    <tr>
                        <td>Submitter:</td>
                        <td>$row[submitter]</td>
                    </tr>
                    <tr>
                        <td colspan='2'><center><b><a href='$self?action=viewtutorial&id=$row[id]'>View</a></b></center></td>
                    </tr>
                    <tr>
                        <td colspan='2'><hr /></td>
                    </tr>
                ";
            }
            echo "</table>";
        }
    }
    else
    {
        echo "Please give me a category ID!";
    }
    break;

    //------------------------------------------
    //this case gets the given [ID]
    //action=viewtutorial&id=[ID]
    //and gets that tutorial ID from the database
    //and displays it!
    //------------------------------------------
    case "viewtutorial":
    //if there is an ID given..
    if($_GET['id'])
    {
        //set $id to the URL id, cast to an INT
        //for security purposes
        $id = (int)$_GET['id'];

        //query the database
        $query = mysql_query("SELECT * FROM tutorials WHERE id = '$id' LIMIT 1") or die (mysql_error());

        //if no rows returned...
        if(mysql_num_rows($query) == 0)
        {
            echo "That ID is not in the database!";
        }
        //else, show it!
        else
        {
            //update the views for this tutorial!
            $update_views = mysql_query("UPDATE tutorials SET views = views + 1 WHERE id = '$id'") or die(mysql_error());

            //loop through the database
            while($row = mysql_fetch_array($query))
            {
                echo "
                <table border='0' cellpadding='0' cellspacing='0' width='500' style='border: 1px solid black; padding: 3px;'>
                    <tr>
                        <td colspan='2'>Tutorial: <b>$row[title]</b></td>
                    </tr>
                    <tr>
                        <td colspan='2' style='border: 1px solid black;'><center><b>Tutorial</b></center><br />$row[text]</td>
                    </tr>
                    <tr>
                    ";
                    //----------------------------
                    //this part of the code
                    //checks to see if the submitter
                    //wants an email left for support
                    //----------------------------
                    if($row['show_email'] == 1)
                    {
                        echo "
                        <td colspan='2'>This tutorial was submitted by <b>$row[submitter]</b> with an email left for support questions. Contact this person <a href='mailto:$row[email]'>here</a></td>
                        ";
                    }
                    echo "
                    </tr>
                    <tr>
                        <td><hr /></td>
                    </tr>
                ";
            }
            //--------------------------------
            //this is where we loop through the
            //comments table to show all the
            //comments for this tutorial
            //--------------------------------
            $comments = mysql_query("SELECT * FROM tutorials_comments WHERE tut_id = '$id' ORDER BY id DESC") or die (mysql_error());

            //if there are no comments..
            if(mysql_num_rows($comments) == 0)
            {
                echo "
                    <tr>
                        <td colspan='2'>No comments for this tutorial yet!</td>
                    </tr>
                ";
            }
            //else, show them!
            else
            {
                //loop through them
                while($row = mysql_fetch_array($comments))
                {
                    echo "
                    <tr>
                        <td colspan='2'>Comment by: <b>$row[submitter]</b></td>
                    </tr>
                    <tr>
                        <td colspan='2'  style='border: 1px solid black; padding: 2px;' vAlign='top'>$row[text]</td>
                    </tr>
                    ";
                }
            }
            //show the form to enter comments
            echo "
            <tr>
                <td colspan='2'><hr /></td>
            </tr>
            <form action='$self' method='post'>
                <tr>
                    <td>Name:</td>
                    <td><input type='text' name='name' maxlength='25'></td>
                </tr>
                <tr>
                    <td>Comment:</td>
                    <td><textarea name='message' cols='40' rows='10'></textarea></td>
                </tr>
                <tr>
                    <td colspan='2'><center><input type='submit' name='add_comment' value='Add Comment'></center></td>
                </tr>
            </form>
            ";
            //-----------------------------
            //if the comment submit form
            //HAS been submitted, enter info
            //to the database.
            //-----------------------------
            if(isset($_POST['add_comment']))
            {
                //strip all HTML tags
                //and get rid of any quotes to prevent
                //SQL injection
                $message = mysql_real_escape_string(strip_tags($_POST['message']));
                $name = mysql_real_escape_string(strip_tags($_POST['name']));
                $time = time();

                //use an array to store all error messages
                $error_msg = array();
                if(empty($message))
                {
                    $error_msg[] = "Please enter a message!<br />";
                }
                if(empty($name))
                {
                    $error_msg[] = "Please enter a name!<br />";
                }
                //print the errors
                if(count($error_msg)>0)
                {
                    echo "<strong>ERROR:</strong><br>n";
                    foreach($error_msg as $err)
                        echo "$err";
                }
                //else, everything is ok, enter it in the DB
                else
                {
                    $query = mysql_query("INSERT INTO tutorials_comments VALUES (NULL,'$id','$name', '$message', '$time')") or die(mysql_error());
                }
            }
            echo "</table>";
        }
    }
    //if not..
    else
    {
        echo "No ID specified!";
    }
    break;

    //------------------------------------------
    //default case, this is shown default
    //in this instance, we are going to make the default case show
    //all the categories that you can view tutorials on
    //------------------------------------------
    default:
    $query = mysql_query("SELECT * FROM tutorials_categorys") or die(mysql_error());

    //if the number of rows returned is 0, then say, no categories
    if(mysql_num_rows($query) == 0)
    {
        echo "No tutorial categories currently!";
    }
    //if anything else, then there has to be categories. show em.
    else
    {
        echo "<h1>Tutorial Categories:</h1> ";
        //while loop to loop through the database and display results!
        while($row = mysql_fetch_array($query))
        {
            echo "
            <table border='0' cellpadding = '0' cellspacing='0' width='500'>
                <tr>
                    <td>Category Name:</td>
                    <td>$row[category]</td>
                </tr>
                <tr>
                    <td>Description:</td>
                    <td>$row[description]</td>
                </tr>
                <tr>
                    <td><a href='$self?action=viewcategory&id=$row[id]'>Visit this category</a></td>
                </tr>
                <tr>
                    <td><hr /></td>
                </tr>
            </table>
            ";
        }
    }
    break;
}
//end navigation
//------------------------------------------
?>




Phew, theres explanations in the code, so i'm going to save your time by just letting you read
the comments in the code.

Second file. This is our admin panel, where we can review submitted tutorials, and validate/delete them!

tutorials_admin.php
PHP Code:
CODE

<?php
//------------------------------------------
//database connection
mysql_connect("localhost", "username", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
//end database connection
//------------------------------------------


//------------[IMPORTANT]-------------------
// I would suggest adding this file to part
// of a user system so it doesn't get viewed
// by just anyone
//------------[IMPORTANT]-------------------


//------------------------------------------
//echo out a navigation panel
echo "
<center><a href="tutorials.php">View Categorys</a> | <a href="tutorials.php?action=addtutorial">Add Tutorial</a> | <a href="tutorials_admin.php">Admin</a> | <a href="tutorials_admin.php?action=addcategory">Add Category</a></center>
";
//------------------------------------------

//------------------------------------------
//begin main navigation (tutorials.php?action=)
switch($_GET['action'])
{
    //--------------------------
    // case to add a tutorial category
    //--------------------------
    case "addcategory":
    //if the form to add a new category
    //isn't submitted, show one
    if(!isset($_POST['new_category']))
    {
        echo "
        <form action='tutorials_admin.php?action=addcategory' method='post'>
        <table border='0' cellpadding='0' cellspacing='0' width='500'>
            <tr>
                <td>Category name:</td>
                <td><input type='text' name='category' maxlength='25'></td>
            </tr>
            <tr>
                <td>Description:</td>
                <td><textarea name='description' cols='40' rows='10'></textarea></td>
            </tr>
            <tr>
                <td colspan='2'><center><input type='submit' name='new_category' value='New Category!'></td>
            </tr>
        </table>
        </form>
        ";
    }
    //else, error check and then insert data to database!
    elseif(isset($_POST['new_category']))
    {
        $category = mysql_real_escape_string(strip_tags($_POST['category']));
        $description = mysql_real_escape_string(strip_tags($_POST['description']));

        //begin error reporting
        $error_msg = array();
        if(empty($category))
        {
            $error_msg[] = "No Category name entered!<br />";
        }
        if(empty($description))
        {
            $error_msg[] = "No description entered!<br />";
        }
        //print errors, if any
        if(count($error_msg)>0)
        {
            echo "<strong>ERROR:</strong><br>n";
            foreach($error_msg as $err)
                echo "$err";
        }
        //else, no errors, insert to the DB!
        else
        {
            $query = mysql_query("INSERT INTO tutorials_categorys (category, description) VALUES ('$category', '$description')") or die(mysql_error());
            echo "Tutorial Category Added!";
        }
    }
    break;

    //--------------------------
    //this case takes the submitted
    //form data of the admin form.
    //you can either validate, or delete
    //--------------------------
    case "handle":
    //if nothing is submitted in the
    //row[] array, then error!
    if(empty($_POST['row']))
    {
        echo "Nothing to delete/validate!";
    }
    if(isset($_POST['delete_tutorials']))
    {
        $delete_array = $_POST['row'];

        //loop through each individual
        //item in the array

        foreach($delete_array as $val)
        {
            //delete them!
            $query = "DELETE FROM tutorials WHERE id = '$val'";
            $result = mysql_query($query) or die(mysql_error());
        }
        echo "Tutorial(s) deleted";
    }
    elseif(isset($_POST['validate_tutorials']))
    {
        $validate_array = $_POST['row'];

        //loop through each individual
        //item in the array

        foreach($validate_array as $val)
        {
            //update the status to 1 which means validated!
            $query = "UPDATE tutorials SET is_validated = '1' WHERE id = '$val'";
            $result = mysql_query($query) or die(mysql_error());
        }
        echo "Tutorial(s) validated!";
    }
    break;

    //--------------------------
    //default case, we show
    //all tutorials with actions
    //--------------------------
    default:
    $query = mysql_query("SELECT * FROM tutorials WHERE is_validated = '0' ORDER BY time_submitted DESC") or die(mysql_error());
    echo "<h1>Unreviewed Tutorials</h1>";
    if(mysql_num_rows($query) == 0)
    {
        echo "No tutorials unreviewed!";
    }
    //there are rows, show the tutorials to
    //verify them
    else
    {
        //echo the submit buttons
        echo "
        <form action='tutorials_admin.php?action=handle' method='post'>
        <table border='0' cellpadding='0' cellspacing='0' width='500'>
            <tr>
                <td><center>With Selected</center></td>
            </tr>
            <tr>
                <td colspan='2'><center><input type='submit' name='validate_tutorials' value='Validate'><input type='submit' name='delete_tutorials' value='Delete'></center></td>
            </tr>
            <tr>
                <td colspan='2'><hr /></td>
            </tr>
        ";
        //loop throught it to show them all
        while($row = mysql_fetch_array($query))
        {
            echo "
            <tr>
                <td>Title:</td>
                <td>$row[title]</td>
            </tr>
            <tr>
                <td>Submitter:</td>
                <td>$row[submitter]</td>
            </tr>
            <tr>
                <td>Short Description:</td>
                <td>$row[short_description]</td>
            </tr>
            <tr>
                <td>Tutorial Text:</td>
                <td>$row[text]</td>
            </tr>
            <tr>
                <td>Email:</td>
                <td><a href='mailto:$row[email]'>$row[email]</a></td>
            </tr>
&nb

 

 

 


Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. tutorial submission script - 129.23 hr back. (1)
Similar Topics

Keywords : script, submit, site

  1. Php Guest Online Script
    (2)
  2. A Small Social Networking Site....
    as a part of college project (9)
    hey friends... I wish to create a small social networking site (as a part of my college project),
    i want to create a site where people can log in , have their accounts ,send messages to friends and
    a few more things if possible...basically i want to illustrate database management... It won't
    have many people logged in... just a few to illustrate how it works... ie how the database works
    now let me be clear about what i know and what i don't. i can create web pages and use java
    script...and i know that's not enough. ....and that's not even close. a....
  3. Can't Login To Any Software On My Site
    anyone know how to fix? (3)
    In a subdomain of my site I have an installation of MediaWiki, and until now it's been working
    fine. But today I've been having trouble with it. Previously, whenever I logged into MediaWiki
    it worked first time and I would stay logged in for about an hour, even without the "Remember Me"
    option checked. But I tried logging in now, and after logging me in, the next page I went to showed
    me as "not logged in". I cleared the cache as I know this has been a problem before, and then tried
    logging in again, but it still said I was not logged in! So I tried one more ....
  4. Need Help: Problem Seeing My Site
    maybe i screwed up? (3)
    I just got my account activated yesterday. so i logged in thru optional
    http://www.qupis.com/client and started setting up my site thru there. But the other links in the
    activated email don't work. ex: http://crazxbox.qupis.com:2082/ I'm' using Firefox 3.
    is that the problem? i don't have IE. " or did I totally mess up my install?" Plus i'm not
    familiar with this mysql 4.1.22, i'm using 5.0.27 is there much of a difference? it says i dont
    have a valid user in phpMyAdmin. Any ways, site http://crazxbox.qupis.com is not working yet.
    I ....
  5. I Need Help With Setting Up My Site, Made Using Java
    any help would be appreciated (5)
    I just got web hosting approved and I want to host the site I created using Struts framework.
    I'm a complete newb when it comes to web hosting, so I need a little help. Is there a tutorial
    that covers this subject? I apologize in advance if this question was already answered, but
    I've been unable to find the answer anywhere. One thing I have to note is that I need to know
    absolute address of the uploaded files in order for my application to work. Is this even allowed?
    Any help with hosting of Java applications will be appreciated.....
  6. Database Or Pdf
    Best way to list books on my site (1)
    Hi all, I am not sure if this is the right place to post but I'm sure you'll tell
    me if it's not. My problem is this: I have a website where I sell books and it's one of
    those simpleton sites where I don't need to know code, I just click icons etc Anyway, I can
    upload images to the server and need to have them in different resolutions and link from a thumbnail
    to the larger picture. What I am trying to say is I have about 6000 books to display on my
    website which is impractical as it takes me about 10 mins to load 1 copy. What is the ....
  7. Free Web Hosting Application [screened] [approved]
    by miikerocks: request for site (PLEASE READ) (6)
    PRESENT CREDITS : Forum Username : miikerocks Email Address: mike_simpson_@hotmail.com My
    Desired Trap17 SUBdomain Name is: www.FreeLoads.org Introduce Yourself: Your hobbies, interests,
    talents, etc. Let the forum know you better. • For hobbies I like to be nice to people,
    well help people out. I like to go on the computer, and one of the things I LOVE is to make
    websites. Ever since grade 3 I have been searching and searching for a way to make a .com for free,
    now I find you guys. THANK YOU SOOOO MUCH!!! I have talents and interests in sport....
  8. Donate Domains To Bloggers.
    My Site (0)
    I'm planning on starting a site soon that will allow visitors to donate money, which will be
    used to purchase domains for bloggers. Bloggers who have a decent existing blog with moderate
    traffic can apply for free domains. This is to promote good blogging, expose great bloggers/writers
    to a greater audience and is intended for those who are not able to afford a domain. What do you
    think? Is this a good idea? Would you apply for a domain? Would you donate for this cause?....
  9. Best Browser To Desighn Your Site To
    not much of a question but more like a statement (9)
    well since i started web desighning i've always used internet explore (why?) well when i first
    tried FF2, i wasn't a "web-designer" then so i didn't care much about css and htlm stuff, i
    din't like it and one of the reason was beacause a couple of the sites i visited wasnt firefox
    compatible. but anyways recently i was desighning a site for this community. so like two weeks ago i
    downloaded FF3 for testing purposes. in IE the site looked great but what i found was that in
    firefox the site was horible, as bad as they could come. so since firefox was better....
  10. Phpizabi Social Network Script
    (1)
    Hello everyone not been on for AGES! we had net problems and i had to move to qupis and now
    I've got problems. I'm making a social networking site using this script and I cant get it
    to install Everytime I go to the install page i get this QUOTE Warning: session_start() :
    open_basedir restriction in effect. File(/home/kasiks1/tmp) is not within the allowed path(s):
    (/home/karlos:/usr/lib/php:/usr/local/lib/php:/tmp) in
    /home/karlos/public_html/phpazi/install/index.php on line 1 Fatal error: session_start() : Failed
    to initialize storage module: file....
  11. How To Make A View New Post Script?
    (5)
    Ok so i'm still working on the forum software i posted about a while back, but I have no idea
    how to do this. I want to make a view new post script, as this is one of the main things that my
    forum software dose not have that all other forums have. so does any body have an idea on how i
    would do this? Thanks.....
  12. Can We Host Games With Webhosting This Site Provides?
    Uhm yea I was wondering (1)
    Well, yea the topic name pretty much explains it all. Does this webhosting service let you host
    games such as mafia games and script? Because I need to know! Thanks all!....
  13. No Site Access
    (4)
    It was working the day before yesterday and then it started giving me error messages about not being
    able to access the site. I can't access cpanel either. Neither page ever loads. I don't
    have this problem with any other internet pages, just my site stuff on Trap17. My site's at
    www.jzambrano.trap17.com btw. This is one of the few times I'll need it up for sure so I'd
    appreciate if the issue can get fixed in the near future. ....
  14. Great Weather Site
    Cool weather Site (7)
    I found this weather site a few days ago and wow. Has some very clear chase cams.
    Serverstudios.com ....
  15. Need A Name For A Hosting Site
    (3)
    Ok so i'm thinking about setting up a paid and free hosting site with computing host resaller
    plan. but i'm having no luck coming up with a name for the site, evey thing i have tryed it
    taken arleady. so i was wonder if i could get some help with picking a name? so dose any body have
    any ideas? I dont wont it to be one of those super long domain names. Thanks....
  16. Review My Site
    Review my site please (18)
    Hello. I am new here to trap17.com and would really like some input on my site. Echo Of Thunder
    Made using Dream Weaver and note pad. Planning on a better forum and chat page as time goes by.
    This is just a little hobby that I have. "weather" and I hope that you all here at trap17 will take
    a look see, and tell me what you all think. ....
  17. Cool Site To Learn Languages
    Learn to speak in Native accent (4)
    http://www.livemocha.com/ Discovered this site months before. And also I took some classes. I
    should say this is really cool one. Try it. Learn new languages in a social way with LiveMocha.
    Livemocha is the first-of-its-kind online language-learning community. With fun and interactive
    lessons that move at the right pace for you. You can access their team of passionate language tutors
    and start track your progress to reach your goals. Learn, practice, and share. Learn these
    languages: English, French, Hindi, German, Spanish and Mandarin Chinese, among other....
  18. Books?!
    Web-Site? (8)
    I am the active student of Amrican University of Dubai (AUD). Basically, I' tired of buying new
    books in the UNI's book store whcih will last only for 3 months. Anybody knows where I may get
    them online like in PDF format.....
  19. Loaing Script
    (3)
    hello, I'm looking for a preloader script for my site. like it will display an loading
    image while the site is loading and the once the page has loaded the image will disapear. i tryed
    searching for one on google but i could not find one, i think i searched for the worng thing. if
    some one knows how to make one or where i can find one that would be great. Thanks....
  20. Invite Script..
    (2)
    I didn't know where else to put it /sad.gif" style="vertical-align:middle" emoid=":("
    border="0" alt="sad.gif" /> If moderators find another forum more suitable plz move this one
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> I am looking
    for some sort of sript or program that let's people on your website invite friends. Like they
    put in their Emailadress and mails are send to everyone in their list.. I hope someone can help me
    /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Greetzz....
  21. Php Word Filter
    Have you accidently sworn on your site? Or do you want to keep visitor (7)
    This is pretty simple but very useful if you don't want people to swear. We will be using
    str_replace for this. CODE <?php str_replace ("curseword,
    "replacemet"); ?> Thats pretty simple, just fill in the curse word and the
    replacement, and then repeat... heres what it would look like full size: CODE <?php
    str_replace("swear", "replacement"); str_replace("swear",
    "replacement"); str_replace("swear", "replacement");
    str_replace("swear", "....
  22. Background Image Swap Script
    Change a Background Image based on clock time (15)
    Background Image Changer Script To swap the background image from your CSS file according to the
    Server Clock Time. 1.) In your CSS file, add the following rule: CODE body {
        background: url(time.png); } 2.) Create a "folder" named time.png. 3.) Into the
    folder, place three images named morning.png, day.png, night.png. 4.) Also, in the same folder,
    create an index.php file and copy/paste the following script. CODE <?php $hour =
    date('H'); if ($hour < 12 ) {     $image =
    "morning.png"; } ....
  23. Real Paying Site
    Easy and quick (7)
    That site really pays and I have recieved my first payment of 10 dollars. This is really easy not
    much of a big minimum payout and if you want you too can make money by just going here and signing
    up http://adbux.org If you want please do add me as a referrer as zak92 Thank you.....
  24. I Hate Site Builders.
    Mainly things like piczo and freewebs. (40)
    Loads of people i know, who have very little HTML knowledge, use Piczo . And now, anyone with one
    of these sites, think they have the best websites ever! All it usually is pictures and text
    randomly thrown on a page, with very-hard-to-navigate links. Freewebs is basically the same. I'm
    not sure about my space, I think it uses HTML, but I hate myspace websites. Anyways, back on the
    point, does anyone else know people who use piczo and think they are the best website builders in
    the world? I tried to teach one how to HTML, got stuck on tags /dry.gif" style="ve....
  25. Watermark Your Image With Simple Php Script
    found it on the net (34)
    This script was found on the net http://tips-scripts.com/?tip=watermark#tip B&T's Tips &
    Scripts site. Just in case the site may not show, I will include the code here: List of things
    needed: 1. your image in any format 2. watermark image--in gif format with transparent background 3.
    script below with name (i.e. watermark.php) CODE <?php // this script creates a watermarked
    image from an image file - can be a .jpg .gif or .png file // where watermark.gif is a mostly
    transparent gif image with the watermark - goes in the same directory as this script // ....
  26. How To Save *.swf From A Web Site?
    freeware or shareware... (29)
    Greetings, Does anyone know how to grab *.SWF file from web? I've found one software named
    LIATRO SWF DECODER.. anyone have tried it? Is it good? Thanks /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> ....
  27. Give Me Website Ideas..
    Website Ideas : Something original. Ideas for making a site (30)
    Website Ideas I'm deciding to take down my site, it's getting kind of old and
    boring, but I don't want to just stop with having a site. I need some ideas for something that
    provides a service of some sort to people. There are millions of blogs, I really don't want to
    post about my life on a daily basis anyway. All ideas will be welcomed, I can't seem to think
    of anything at all, so Im asking you. What could my new website be about?....
  28. The Funniest Websites On The Net
    Suggest The Funniest Site On The Net (11)
    I Am Going To Start Of This Topic By Suggesting miniclip.com (Games Site) ....
  29. Best Rpg Maker Site Ever
    (1)
    hey yall if you all into rm2k/3/xp what is your favorite site ever mine well is mine because im very
    good at the program and I make tons and tons of tutorials for the systems but ruby coding is da
    hardest waits of my time. So whats your favourite!....
  30. Could Someone Make A Php Script For Me?
    Script to manage clans and players (3)
    Does someone know a script where you can 1. Add clans to a roster 2. Edit clans on a roster 3. Add
    players too a clan 4. Edit players 5. Schedule matches 6. Add clan Leaders to manage their own clan
    + members 7. Add members to edit their own information And maybe some sort of scoreboard integrated
    where you can put Wins, Draws and loses and that automaticly puts best clans on the top? If there
    isnt such a script could someone create 1 for me? (its for a league ^^)....

    1. Looking for script, submit, site

Searching Video's for script, submit, site
Similar
Php Guest
Online
Script
A Small
Social
Networking
Site.... -
as a part of
college
project
Can't
Login To Any
Software On
My Site -
anyone know
how to fix?
Need Help:
Problem
Seeing My
Site - maybe
i screwed
up?
I Need Help
With Setting
Up My Site,
Made Using
Java - any
help would
be
appreciated
Database Or
Pdf - Best
way to list
books on my
site
Free Web
Hosting
Application
[screened]
[approved] -
by
miikerocks:
request for
site (PLEASE
READ)
Donate
Domains To
Bloggers. -
My Site
Best Browser
To Desighn
Your Site To
- not much
of a
question but
more like a
statement
Phpizabi
Social
Network
Script
How To Make
A View New
Post Script?
Can We Host
Games With
Webhosting
This Site
Provides? -
Uhm yea I
was
wondering
No Site
Access
Great
Weather Site
- Cool
weather Site
Need A Name
For A
Hosting Site
Review My
Site -
Review my
site please
Cool Site To
Learn
Languages -
Learn to
speak in
Native
accent
Books?!
- Web-Site?
Loaing
Script
Invite
Script..
Php Word
Filter -
Have you
accidently
sworn on
your site?
Or do you
want to keep
visitor
Background
Image Swap
Script -
Change a
Background
Image based
on clock
time
Real Paying
Site - Easy
and quick
I Hate Site
Builders. -
Mainly
things like
piczo and
freewebs.
Watermark
Your Image
With Simple
Php Script -
found it on
the net
How To Save
*.swf From A
Web Site? -
freeware or
shareware...
Give Me
Website
Ideas.. -
Website
Ideas :
Something
original.
Ideas for
making a
site
The Funniest
Websites On
The Net -
Suggest The
Funniest
Site On The
Net
Best Rpg
Maker Site
Ever
Could
Someone Make
A Php Script
For Me? -
Script to
manage clans
and players
advertisement



How Do I Script A Tutorial Submit Site



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE