Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
About Me

Am a peaceful and easy going chap that really loves programming.

Interests
Football (Soccer), Coding, Researching
Favorite Forums
Favorite Tags
Member Avatar for erabxes

How do one go about opening a file in php by using the resources made available on a system. Take for instance that after getting the header content information of a file, one discovers that the file is a word document, or a pdf file, how do one use a …

Member Avatar for steelbrain
0
280
Member Avatar for erabxes

<form action = "uploadFile.php" method= "POST" enctype = "multipart/form-data"> <input type = "file" name = "file[]"><br><br> <input type = "file" name = "file[]"><br><br> <input type = "submit" value = "Submit"> </form> Is it possible to upload more than one file at the same time with just a click on the …

Member Avatar for erabxes
0
98
Member Avatar for erabxes

I am not able to get my email input even after defining my sessions, please look below: I have two scripts: The first is is to show the declaration of the session, while the second is to display the session's value: First Script:sessionTest1.php <?php session_start(); ?> <html> <head><title>Testing Sessions page …

Member Avatar for erabxes
0
284
Member Avatar for erabxes

Having a form as below, what should I do to my database or how should I structure my database so that for instance, a particular user will have all the three entries attached to him: ********************************************************** <html> <form action="processForm2.php" method="post"> <p>First Entry</p> <div id="original"> <select name="subject[]"> <option>English</option> <option>Mathematics</option> <option>Physics</option> <option>Chemistry</option> …

Member Avatar for urtrivedi
0
217
Member Avatar for erabxes

Is it necessary to use mysqli_real_escape_string function for values inputted from the selection option in PHP?

Member Avatar for pritaeas
0
43
Member Avatar for erabxes

I have a form like the one below which is posted to processForm.php, and the user can dynamically add more with jquery. <input type="text" name="subject[]" /> <input type="text" name="grade[]" /> <input type="text" name="year[]" /> <input type="text" name="subject[]" /> <input type="text" name="grade[]" /> <input type="text" name="year[]" /> <input type="text" name="subject[]" /> …

Member Avatar for erabxes
0
358
Member Avatar for erabxes

Hello! Please I would want to be able allow users select options from a list of selections as many times as possible using php, how do i achieve that? Below is a form for better description of what i desire to do <html><body> <form action="" method="post"> <p>You can enter your …

Member Avatar for erabxes
0
118