quote($User->Id); //update request status if(!empty($User->Id)) { if(isset($_POST['fill'])) { $fill_request = $Db->query("UPDATE user_request SET `status` = '1', `date_filled` = '" .time(). "', `url` = '".$plus->quote($_POST[url])."' WHERE id = '".$plus->quote($_POST[id])."' LIMIT 1"); //email_request(#); include "/home/ac/public_html/email.php"; //include "/home/ac/public_html/add_alert.php"; # addAlertRequested($_POST['id']); @header('Location: http://animecrave.com/index.php?page=request'); } //+1 vote for request if(isset($_POST['request'])) { $u_id = $plus->quote($User->Id); if(userNotLive()) { $fill_request = $Db->query("UPDATE user_request SET votes = concat(votes,'|{$u_id}|'), votes_num=(votes_num)+1 WHERE id = '".$plus->quote($_POST[id])."' AND votes NOT LIKE '%|$u_id|%' LIMIT 1"); $note = "Your request was added to it's total amount of votes. To increase its chances of being added please promote it on forums & chat!"; } else { $fill_request = $Db->query("UPDATE user_request SET votes = concat(votes,'|{$u_id}|'), votes_num=(votes_num)+1, votes_live=(votes_live)+1 WHERE id = '".$plus->quote($_POST[id])."' AND votes NOT LIKE '%|$u_id|%' LIMIT 1"); $note = "Your request was added to it's total amount of votes. To increase its chances of being added please promote it on forums & chat!"; } @header('Location: http://animecrave.com/index.php?page=request'); } //Update Request Note if(isset($_POST['note'])) { $note = $plus->quote($_POST['note']); $fill_request = $Db->query("UPDATE user_request SET note = '{$note}' WHERE id = '".$plus->quote($_POST[id])."' LIMIT 1"); @header('Location: http://animecrave.com/index.php?page=request'); } //Delete Request if(isset($_POST['delete_id'])) { $delete_id = $plus->quote($_POST['delete_id']); $fill_request = $Db->query("DELETE FROM `user_request` WHERE `user_request`.`id` = '{$delete_id}' LIMIT 1"); @header('Location: http://animecrave.com/index.php?page=request'); } if(isset($_POST['irequest']) && isset($_POST[title]) && isset($_POST[group1])) { if(userNotLive()) { $live_num = 0; } else { $live_num = 1; } $if_onac = $Db->query("SELECT id FROM ac_animecrave.ac_anime WHERE title='".$plus->quote($_POST[title])."' AND type='".$plus->quote($_POST[group1])."' LIMIT 1"); if (mysql_num_rows($if_onac) > 0) { $note = "The media you requested is already available on Anime Crave."; $cancel = "1"; } $if_requested = $Db->query("SELECT id FROM ac_animecrave.user_request WHERE name='".$plus->quote($_POST[title])."' AND type='".$plus->quote($_POST[group1])."' LIMIT 1"); if (mysql_num_rows($if_requested) > 0) { $note = "The media you requested has already been requested. Your request was added to it's total amount of votes. To increase its chances of being added please promote it on forums & chat!"; $cancel = "2"; } if(!isset($cancel)) { $add_request = $Db->query("INSERT INTO user_request (name, date, type, user_id, votes, votes_num, votes_live) VALUES ('".$plus->quote($_POST[title])."', '" .time(). "', '".$plus->quote($_POST[group1])."', '".$plus->quote($User->Id)."', '|".$plus->quote($User->Id)."|', '1', '{$live_num}')"); $note = "The request has been added, to increase its chances of being added please promote it on forums & chat!"; } if($cancel == "2") { $fill_request = $Db->query("UPDATE user_request SET votes = concat(votes,'|{$u_id}|'), votes_num=(votes_num)+1, votes_live=(votes_live)+$live_num WHERE name = '".$plus->quote($_POST[title])."' AND votes NOT LIKE '%|$u_id|%' LIMIT 1"); } } } } switch ($_GET['or']) { case 0: $orderby = "votes_num DESC"; break; case 1: $orderby = "votes_num ASC"; break; case 2: $orderby = "name DESC"; break; case 3: $orderby = "name ASC"; break; case 4: $orderby = "date DESC"; break; case 5: $orderby = "date ASC"; break; default: $orderby = "name ASC"; } if($_GET['or'] == 0) { $voteor = "?page=request&or=1"; } else { $voteor = "?page=request&or=0"; } if($_GET['or'] == 2) { $nameor = "?page=request&or=3"; } else { $nameor = "?page=request&or=2"; } if($_GET['or'] == 4) { $dateor = "?page=request&or=5"; } else { $dateor = "?page=request&or=4"; } if(!empty($User->Id)) { $theme = explode(",", $User->Info['theme']); $color1="#{$theme[1]}"; } //include "/home/ac/public_html/_content/equest.php"; ?>
ANIME REQUEST
Welcome to the AnimeCrave anime request Database. Here you have the option to request anime that has not been released in the site. Please understand that there are countless anime series and movies out there and we are trying as hard as we can to please all of our members.

Please be sure to browse or search the list of already requested animes. If you see the anime that you want in there simply press "REQUEST THIS". Remember the more requests an anime has the more likely it is to be added soon.

Please do not request more than 5 animes... Allow other members to have a chance at watching what they want as well.
EASY! REQUEST
      EASY! REQUEST
REQUEST FORM
Anime Series Anime Fansubs Anime Movies OVA's Live Action Music
Type the name of the anime that you are looking for. Then hit search to find if the anime has already been requested. If the anime has not been requested then simply hit request to get it on AC!
Id)) { ?>
ANIME SERIES
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '1' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested Series
ANIME FANSUBS
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '5' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested Fansubs
ANIME MOVIES
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '3' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested Movies
OVA's
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '2' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested OVA's
LIVE ACTION
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '4' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested Livve Action
MUSIC
NAME TYPE DATE REQUESTS AVAILABILITY
query("SELECT * FROM user_request WHERE status = '0' AND type = '7' ORDER BY {$orderby} LIMIT 5"); while ($data = mysql_fetch_array($result_request, MYSQL_ASSOC)) { echo " "; switch ($data['type']) { case 1: $type = "Series"; break; case 2: $type = "OVA"; break; case 3: $type = "Movie"; break; case 4: $type = "Live Action"; break; case 5: $type = "Fansub"; break; case 7: $type = "mp3s"; break; } echo " "; $votes_array = explode("|", $data['votes']); $votes = count($votes_array); echo "
".$data['name']."{$type} ".date('m.d.y', $data[date])."{$data['votes_num']} "; if($User->Info['level'] > 1) { echo "(L: {$data['votes_live']})"; } echo "
"; if(!in_array("$User->Id", $votes_array) && !empty($User->Id)) { echo ""; echo ""; echo "
"; } else { echo "\"NOT"; } echo "
"; echo " "; if($User->Info['level'] > 1) { echo ""; } elseif(!empty($data['note'])) { echo ""; } if($User->Info['level'] > 1) { echo " "; } else { echo ""; } echo "
NOTES: {$data['note']}
"; } echo ""; ?>
View All Requested Music