Search found 3 matches
- Tue Dec 13, 2016 5:29 am
- Forum: PHP - Code
- Topic: Cant figure out multidimensional arrays
- Replies: 5
- Views: 3973
Re: Cant figure out multidimensional arrays
I have the data outputting to a table now but I am just having one last issue. <?php $counter = 0; // Defining function function deleteEntry(){ array_splice($_SESSION['submissions'], $counter, 1); } // Starting table echo "<table Border=5 CELLSPACING=3> <tr> <th>Name</th> <th>Email</th> <th>Pho...
- Mon Dec 12, 2016 2:34 pm
- Forum: PHP - Code
- Topic: Cant figure out multidimensional arrays
- Replies: 5
- Views: 3973
Re: Cant figure out multidimensional arrays
Thanks, I figured I was doing it wrong one way or another.
Do you have any advice on how I can go about allowing clients to view/edit/delete a particular $submission before they make the final confirmation?
Do you have any advice on how I can go about allowing clients to view/edit/delete a particular $submission before they make the final confirmation?
- Mon Dec 12, 2016 1:49 pm
- Forum: PHP - Code
- Topic: Cant figure out multidimensional arrays
- Replies: 5
- Views: 3973
Cant figure out multidimensional arrays
I should clarify, I am able to use them but I do not understand how to utilize them properly. I have a code that takes contact form data on contactform.php and passes it to formprocessor.php On formprocessor.php here is the code ////form variables $name = $_POST['name']; $email = $_POST['email']; $p...