Rating system

Could anyone make me a rating system for a new tutorials web site that will be coming out soon its not paid job but i will link to your site from it

EDIT: The rating system needs to be PHP :D
Free MySpace Layouts- Coming soon
Photoshop Tutorials- Coming soon
Premium PHP Scripts- Coming soon

Haha i should really do some work so i can remove all the coming soon's

Comments

  • PythonPython Forum Leader The Royal RAM
    I MIGHT be able to do it... Im still a bit of a beginner with PHP though... ill give it a go later...

    The Royal Ram

  • martian2k4martian2k4 Llama Hunter Moderator
    well it would be greatly appreciated. I could do it but i don't have much time over the next week i need itr done soon. If you could it would be a great help
    Free MySpace Layouts- Coming soon
    Photoshop Tutorials- Coming soon
    Premium PHP Scripts- Coming soon

    Haha i should really do some work so i can remove all the coming soon's
  • kinkkink serious member VPS - Virtual Prince of the Server
    heres a basic pile of crap you can add any function you would
    <script type="text/javascript">
    function myfunction()
    {


    document.write("Hello intelligent surfer<br><font color='red'>h<font color='blue'>i</font>")

    }
    </script>






    1
    <input type="radio" value="1" name="1" onClick="myfunction();">
    2

    <input type="radio" value="2" name="2" onClick="myfunction();">
    3
    <input type="radio" value="3" name="3" onClick="myfunction();">
    4
    <input type="radio" value="4" name="4" onClick="myfunction();">
    5
    <input type="radio" value="5" name="5" onClick="myfunction();">
    6
    <input type="radio" value="6" name="6" onClick="myfunction();">
    7




    let meknow if its helpful
  • kinkkink serious member VPS - Virtual Prince of the Server
    heres a revised version no if/elses needed (probably)




    <script type="text/javascript">
    function afunction()

    {

    document.write("Hello intelligent surfer a<br><font color='red'>h<font color='blue'>i1</font>")
    }

    function bfunction()
    {
    document.write("Hello intelligent surfer b<br><font color='red'>h<font color='blue'>i</font>")
    }

    function cfunction()
    {
    document.write("Hello intelligent surfer c<br><font color='red'>h<font color='blue'>i</font>")
    }

    function dfunction()
    {
    document.write("Hello intelligent surfer d<br><font color='red'>h<font color='blue'>i</font>")
    }

    function efunction()
    {
    document.write("Hello intelligent surfer e<br><font color='red'>h<font color='blue'>i</font>")
    }

    function ffunction()
    {
    document.write("Hello intelligent surfer f<br><font color='red'>h<font color='blue'>i</font>")
    }
    </script>






    1
    <input type="radio" value="1" name="1" onClick="afunction();">
    2

    <input type="radio" value="2" name="2" onClick="bfunction();">
    3
    <input type="radio" value="3" name="3" onClick="cfunction();">
    4
    <input type="radio" value="4" name="4" onClick="dfunction();">
    5
    <input type="radio" value="5" name="5" onClick="efunction();">
    6
    <input type="radio" value="6" name="6" onClick="ffunction();">
  • martian2k4martian2k4 Llama Hunter Moderator
    well i was needing one in php but thanx any way I should have said in the first post
    Free MySpace Layouts- Coming soon
    Photoshop Tutorials- Coming soon
    Premium PHP Scripts- Coming soon

    Haha i should really do some work so i can remove all the coming soon's
  • kinkkink serious member VPS - Virtual Prince of the Server
    javascript and php mix pretty well might giver it a go
  • kinkkink serious member VPS - Virtual Prince of the Server
    for php this is about best i can do


    <form action="action.php" method="post">
    1 <input type="radio" name="name" />
    2<input type="radio" name="name" />
    3<input type="radio" name="name" />
    4<input type="radio" name="name" />
    5<input type="radio" name="name" />
    6<input type="radio" name="name" />
    7<input type="radio" name="name" />
    8<input type="radio" name="name" />
    9<input type="radio" name="name" />
    10<input type="radio" name="name" />






    <input value="vote" type="submit" />
    <input value="clear" type="reset" />
    </form>
  • kinkkink serious member VPS - Virtual Prince of the Server
  • martian2k4martian2k4 Llama Hunter Moderator
    well i have some time now so i will make the rating system but thanx any way
    Free MySpace Layouts- Coming soon
    Photoshop Tutorials- Coming soon
    Premium PHP Scripts- Coming soon

    Haha i should really do some work so i can remove all the coming soon's
Sign In or Register to comment.