Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 222/222artist_portalB.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
you are now logged in as '$row[1]'";
// Creates form fields to change artist info using the POST method.
echo '<form action="222artist_portalB.php" method="post" enctype="multipart/form-data"><pre>';
echo 'First Name <input type="text" name="firstname" /> ' . $row[3];
echo '<br />Last Name <input type="text" name="lastname" /> ' . $row[4];
echo 'First Name <input type="text" name="firstname" value="'.$row[3].'"/>';
echo '<br />Last Name <input type="text" name="lastname" value="'.$row[4].'"/>';
echo '<br /><input type="submit" value="CHANGE INFO" />';
// Allows user to select a file to upload and upload it.
echo '<br />Select Image to Upload: <input type="file" name="filename" />' .
Expand Down