Hello again everyone. I wrote small program for a friend to upload videos and images of the Workouts everyday in our gym, on his website (http://crossfitsumter.com/). He has no problems with any of it except the images. Whenever he attempts to upload or modify and image from his Iphone, it will go through like it is posting the new or updated image, but it will not actually go through. In otherwords, when he hits ‘submit’ it just shows a small red X on teh website where the image should be. Also, when he eitehr updates or modifies an image, it makes them All turn to red X’s even though he onlu modified one. From a PC, it works fine. Anyone see a problem outright with the code below?
[php]<?php
include ‘core/init.php’;
protect_page();
include ‘includes/overall/overallheader.php’;
include(‘connection.php’);
?>
<?php include 'includes/admin_menu.php'; ?>
<?php
$query="SELECT * FROM `wod` ORDER BY `id` DESC";
$resource=mysql_query($query);
?>
Add New WOD
Current WOD List
Month |
Day |
Year |
Name |
<?php
while($result=mysql_fetch_array($resource))
{
echo "
".$result['month']." |
".$result['day']." |
".$result['year']." |
".$result['name']." |
".$result['imagelocation']." |
|
";
}
?>
<?php echo $_html; ?>
<?php include 'includes/overall/overallfooter.php'; ?>[/php]