Status
Not open for further replies.

shakac

Active Member
47
2011
0
0
hello
i have a student database.i have a problem you have to solve it.
i want to input class test marks for all of the student by roll at a time.
see this pic
wj.png


if you are expert in php and intend to complete job please post here or pm me
payment via paypal after job complete

__________________
Added after 58 minutes:

14 views but nobody replied !

__________________
Added after 13 minutes:

14 views but nobody replied !
 
Last edited:
19 comments
Awesome , why don't you ask someone to do it for free ? You may be able to keep more money from the person you are outsourcing this for ....or you need to learn to do your homework yourself..
 
Any 'Project' which has a relation to doing someones homework or assignments, my prices go up to a base rate of from $200.
 
Do I have to fix the code or got to code from scratch ?

$3 is too less...

btw, do you require a backend too to input the data (grade,marks & rank)?
 
it's a simple work
i coded some but it wouldn't work.
such as when subject select then automatically all roll no for class selected in previous select option will appear with an input field and i will able to submit all marks against roll no.
that's all
so if you can post here i will $4.
 
$499.99 for simple work lol
if you can just code to get all of the data from roll_no column and an input box for input marks and submit to insert
just form.
 
If its homework and your stuck you should be asking for some tips.

This may be a base for other php work, If someone else does it you will be totally lost later on.

It looks like the basics is post an array and loop that to a mysql query.
 
i tried it but i failed
here my code
PHP:
<?php
include("config.php");
$query="SELECT * FROM student_information";
$result = mysql_query($query); 
    if ($result && mysql_num_rows($result)) {
        $numrows = mysql_num_rows($result);
        $rowcount = 1;
        print "There are $numrows student in table:<br /><br />";
    
        while ($row = mysql_fetch_assoc($result)) {
            print "Row $rowcount<br />";
    
            while(list($var, $val) = each($row)) {
                print "<B>$var</B>: $val<br />";
                ?>
//here i want only roll_no column all data and input box
//but all of row of table data is showing
                roll no:here roll num from database
                <input type="text" value="marks" />
                <?php
            }
    
            print "<br />";
            ++$rowcount;
        }
    }
?>
 
what I understood from this is you need to SELECT only roll number column, instead SELECT *, and obviously you need WHERE subject = "whatever subject you want"

also you need to put while loop in a form, and make a code to input marks in data base...

No one will do this for 4usd, but you can get help, so instead of asking anyone to do this for you ask for suggestions and help...

Regards,
Ali Arshad
Founder / CEO
Mxzon Hosting Solutions
www.mxzon.com
 
Status
Not open for further replies.
Back
Top