Jump to content

SnakZ

Members
  • Posts

    27
  • Joined

  • Last visited

    Never

Everything posted by SnakZ

  1. think i got it all worked out there was a "space" that was stopping it add an " *" fixed it but now just need to move on for more error settings as who know what the end user would use for file path, name, or type preg_match('/'.$_GET['name'].'<--->([A-Za-z0-9?\/+.]+)<--->([" *"A-Za-z0-9?\/+,]+)/i', $playersinfo1['players'], $matches); for now i will mark this as solve if you find any errors im happy to hear them lol
  2. preg_match('/'.$_GET['name'].'<--->([A-Za-z0-9?\/+.]+)<--->/', $playersinfo1['players'], $matches); gives me HTML5<--->HTML5/html5code.php<---> but i have yet to find a way to grab that last part i try to just re-add ([A-Za-z0-9?\/+.]+) at the end but then it can no longer find the matche
  3. ok ok i suck at this and that is why i'm hear asking for help lol im pulling data from SQL and only need part of it this is the SQL data Flowplayer<--->flowplayer/flowplayercode.php<---> FLV,MP4,F4V|---|HTML5<--->HTML5/html5code.php<---> MP4,WebM,Ogg|---|WMVPLAYER<--->WMVPLAYER/wmvplayercode.php<--->wmv,wma|---|JWPLAYER<--->JWPLAYER/JWPLAYERcode.php<--->mp4,mov,f4v,flv,3gp,3g2,ogv,webm,mp3,aac,m4a,ogg,wav,swf|---|VLC<--->VLC/VLCcode.php<--->|---| Let say this is what im trying to grab for now HTML5<--->HTML5/html5code.php<---> MP4,WebM,Ogg the main splinter is |---| that what divides everything (in that SQL data there is 5 players ) <---> is what divides the other part of the data this is a code i had hope would work but it didnt lol preg_match('/'.$_GET['name'].'<--->([A-Za-z0-9\-_=]+)<--->([A-Za-z0-9\-_=]+).+?/', $playersinfo1['players'], $matches); i would love any help one can give ty for ur time
  4. [sOLVED] ok i got it to work 100% just posting for that what if other people want to know how to take an array from input and break it apart and put it into the database one by one the "echo" are for me so i can see there names before they go into the SQL $tbox=$_POST['name']; $result = $db->sql_query("SELECT * FROM Table_Z ") or die(mysql_error()) ; foreach ($tbox as $key => $value) { echo" $key $value <br />"; $property = mysql_fetch_field($result); if($key==0){ if (ctype_digit($value)) { sql_query("INSERT INTO table_Z (" . $property->name . ")VALUES ('$value')") or die(mysql_error());}else{ sql_query("INSERT INTO table_Z (" . $property->name . ")VALUES ($value)") or die(mysql_error());} $test=$value; echo"$test"; }else{ if (ctype_digit($value)) { $db->sql_query("UPDATE table_Z SET " . $property->name . "=$value WHERE names=$test") or die(mysql_error());}else{ $db->sql_query("UPDATE table_Z SET " . $property->name . "='$value' WHERE names=$test") or die(mysql_error());} } }
  5. dont mind the other post (pass my edit time) it would not work as i would need an sql update or something like that im getting there i think lol
  6. got it to some what work with this code but now not to sure what type of loop i need to get the column name to change along with the array i know i need some type of loop using mysql_fetch_field $tbox=$_POST['name']; foreach ($tbox as $value) { echo" $key $value <br />"; sql_query("INSERT INTO table_Z ($column)VALUES ($value)") or die(mysql_error()); }
  7. ok im sure we all know how phpmyadmin works. You click insert it grabs the column names/fields using mysql_fetch_field with the help of a loop im sure then when you click submit it some how put them into the database can any one tell me how does it do this ? what code is needed as im trying to do the same thing try to look at there code but its crazy in there im not sure how it grabs the data and put it into the database ty you for your time sorry if this is hard to understand its hard to put it into words
  8. yeah im pulling the file extension to see if its the right ext for uploading but im not to sure how your code works or how to even input it into the the function sorry this function is something i grab off a php helper site so im not sure how it works
  9. can anyone tell me if this is the right way to rewrite this split ?? $exts = split("[/\\.]", $q) ; to $exts = preg_split("[\\.]", $q) ; function findexts ($q) { $q = strtolower($q) ; $exts = split("[/\\.]", $q) ; $n = count($exts)-1; $exts = $exts[$n]; return $exts; } ty you for any help with this
  10. look like that did it ty you alot for your help and he been trying just some times it take the help of other people
  11. this is from a php CMS i been to there site and they keep trying to fix this error but keep failing im praying that maybe with adding a few more heads we can find out whats wrong with this code error is Warning: preg_match() [function.preg-match]: Unknown modifier 'w' in E:\Webserver\xampp\htdocs\php_nuke_eve\blocks\block-Sommaire.php on line 500 line 500 elseif($moduleinthisgroup[$som_groupmenu][$keyinthisgroup]=="Lien externe" && !preg_match("@modules.php?name=@i", $linkinthisgroup[$som_groupmenu][$keyinthisgroup]) && !preg_match("@((http(s)?)|(ftp(s)?))://@i".$_SERVER['SERVER_NAME']."/modules.php\?name=",$linkinthisgroup[$som_groupmenu][$keyinthisgroup])) { if you delete the last !preg_match then there no errors so i believe it has something to do with that line of code full page code is to long so will just upload it [attachment deleted by admin]
  12. i been trying to find out how does a forum do this what code is needed ? im trying to do what a forum would do show 12 post on the first page then give you a "go to page" that list the next 12 or whatever just like a forum word after looking at forum codes i cant tell how they do it lol
  13. ty you QuickOldCar and Sorry for wasting your time I believe i may have found a better way for me to do it it may not be as cool as your coding but it gets the job done lol plus was having a hard time trying to find out how your worked if there was a way to rank you up i would Im not to sure how or why this code works but it does lol i give it a youtube embed and it gives me back http://i2.ytimg.com/vi/cr19U8TVJtw/default.jpg what is what i wanted if (preg_match("#http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?#i", "$video_url")) { $pre_regex = '#<object[^>]+>.+?'. 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s'; $pre_replace = 'http://i2.ytimg.com/vi/\1/default.jpg'; $try9=preg_replace($pre_regex, $pre_replace, $video_url); }
  14. that not the type of URL im trying to get lol here is a youtube embed <object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/cr19U8TVJtw?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cr19U8TVJtw?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object> what im trying to grab is http://www.youtube.com/v/cr19U8TVJtw?fs=1&hl=en_US&rel=0 but i dont want anything before this and dont want the "?" and all that other things pass that so what im asking is how would i grab just http://www.youtube.com/v/cr19U8TVJtw
  15. what im trying to do is take a youtube embed code find the URL code for that video and remove all other parts of the code keeping only the URL of the video after i get the URL by it self then replace the http://www.youtube.com/ part of the URL with http://i2.ytimg.com/vi/ to do this i know that i need something like this to get the URL of the video http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+) but how to only return just the URL is something idk how to do then use str_replace http://www.youtube.com/(?:v|cp)/" with http://i2.ytimg.com/vi/ so in the end im asking if anyone know how to remove all other codes i dont want and only keep the URL this may have to be done using "regex" im not sure as i dont know to much about regex and what it can do but does sound like it would help lol
  16. im marking this as solved as i think its bc im using php-nuke evo that they may have some type of mod or something that is changing my code (it may think someone is trying to hack it idk lol) as the code above me is the same as what i been using
  17. ok i found a site that had a code that did work i just have not found out how or why yet i will post the code here and maybe one of you can find the how or why before i do lol only thing i can think of is bc its being done on the same page and not moving from page to page is why its working idk yet lol http://www.tizag.com/phpT/examples/formfinale.php <?php $Fname = $_POST["Fname"]; $Lname = $_POST["Lname"]; $gender = $_POST["gender"]; $food = $_POST["food"]; $quote = $_POST["quote"]; $education = $_POST["education"]; $TofD = $_POST["TofD"]; if (!isset($_POST['submit'])) { // if page is not submitted to itself echo the form ?> <html> <head> <title>Personal INFO</title> </head> <body> <form method="post" action="<?php echo $PHP_SELF;?>"> First Name:<input type="text" size="12" maxlength="12" name="Fname"><br /> Last Name:<input type="text" size="12" maxlength="36" name="Lname"><br /> Gender:<br /> Male:<input type="radio" value="Male" name="gender"><br /> Female:<input type="radio" value="Female" name="gender"><br /> Please choose type of residence:<br /> Steak:<input type="checkbox" value="Steak" name="food[]"><br /> Pizza:<input type="checkbox" value="Pizza" name="food[]"><br /> Chicken:<input type="checkbox" value="Chicken" name="food[]"><br /> <textarea rows="5" cols="20" name="quote" wrap="physical">Enter your favorite quote!</textarea><br /> Select a Level of Education:<br /> <select name="education"> <option value="Jr.High">Jr.High</option> <option value="HighSchool">HighSchool</option> <option value="College">College</option></select><br /> Select your favorite time of day:<br /> <select name="TofD" size="3"> <option value="Morning">Morning</option> <option value="Day">Day</option> <option value="Night">Night</option></select><br /> <input type="submit" value="submit" name="submit"> </form> <? } else { echo "Hello, ".$Fname." ".$Lname.".<br />"; echo "You are ".$gender.", and you like "; foreach ($food as $f) { echo $f."<br />"; } echo "<i>".$quote."</i><br />"; echo "You're favorite time is ".$TofD.", and you passed ".$education."!<br />"; } ?>
  18. ok how about this using htmlentities() can it can change the html coding before the web bowers re-render the coding ? is there a way to put it into the textarea it self ? so it can be coded there before it get pass on ? i have try a few things but didnt work i try to put =htmlspecialchars didnt work php gave me an error lol ?> <textarea name="video_url" rows="1" cols="70"><?php= htmlspecialchars()?></textarea><?php echo " and i try to change it right from the $_POST but didnt work it had already got render ... $video_url = htmlentities($_POST['video_url']);
  19. <object width="425" height="350"> into the textarea and it comes back with </object> at the end now do it with a youtube video and alot change im sure you will find that the code has a "multipart/form-data" this form does have file upload that why its there i just didnt see the need to put it up here it goes from <object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/N77DTYOcX6w?fs=1&hl=en_US"></param> <param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"> </param><embed src="http://www.youtube.com/v/N77DTYOcX6w?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"> </embed></object> after submiting alot gets change <object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/N77DTYOcX6w"><param name="movie" value="http://www.youtube.com/v/N77DTYOcX6w"></param><!--[if IE]><embed src="http://www.youtube.com/v/N77DTYOcX6w"type="application/x-shockwave-flash"wmode="transparent" width="425" height="350" /><![endif]--></object> and the site code you asked for (note i cut the code down in size for you lol ) <form enctype="multipart/form-data" method="post" action="admin.php?op=videos&op=video_edited&home=$home&id=$id"> video url: <textarea name="video_url" rows="1" cols="70">$video_url</textarea><br /> <input type="Submit"> this part does not matter much as the code has already been change by this point lol just by doing an echo shows me that $video_url=$_POST['video_url']; echo "$video_url "; $query = "UPDATE video_other_source SET title='$title', ep='$ep', text='$text', video_url='$video_url', iframe='$iframe', video_full_url='$video_full_url', uploaded_video='$uploaded_video', text_2='$text_2', video_url_2='$video_url_2', iframe_2='$iframe_2', video_full_url_2='$video_full_url_2', uploaded_video_2='$uploaded_video_2', text_3='$text_3', video_url_3='$video_url_3', iframe_3='$iframe_3', video_full_url_3='$video_full_url_3', uploaded_video_3='$uploaded_video_3', text_4='$text_4', video_url_4='$video_url_4', iframe_4='$iframe_4', video_full_url_4='$video_full_url_4', uploaded_video_4='$uploaded_video_4', text_5='$text_5', video_url_5='$video_url_5', iframe_5='$iframe_5', video_full_url_5='$video_full_url_5', uploaded_video_5='$uploaded_video_5', episode_menu='$episode_menu', descriptionv='$descriptionv', rlanguage='$video_rlanguage', keywordsv='$keywordsv' WHERE id='$id'"; mysql_query($query)
  20. ok let say i pull a video from youtube if i post the info into the textarea and pass it into SQL the data/text has then been change some words have been change or deleted i know that it's happening before it makes it into the SQL and i know there is a way to make it work just dont know how i know there is a way bc if u was to edit your SQL base using phpmyadmin it works fine they use a textarea and a few other things but cant tell just what they are doing to make it work praying someone know a fast way to make it work would think it would be like a onSubmit change all html codes (< > any other) into some other code then change back later before they get put into SQL but not sure how to do this im not the best with php if u dont mind can you give me more info ? lol if not then meh i will work with whatever i can get lol looked all over the net for this with no luck ty you for your time
  21. http://www.shadowmastersz.net/modules.php?name=Videos its a php-nuke type of page that shows videos one part is for people to see and other part is for admins the part for people when they like to see a video (anime video) its better to show more then one link for a video the mod is set up to show the Series and from there u pick what episode you would like to see (here comes the part of uploading)ones your on the episode page it pulls data from the database what is the data for the videos from text, title, video Embed, and then shows them below is how the page is set up (it may not be the best set up for something like this lol but for now it works) (sorry if my coding looks bad ) $text $video_url $uploaded_video $text_2 $video_url_2 $uploaded_video_2 $text_3 $video_url_3 $uploaded_video_3 $text_4 $video_url_4 $uploaded_video_4 $text_5 $video_url_5 $uploaded_video_5 //////////1 start///////////// if ($text) { print "$text<BR><BR>"; } if ($video_url) { print "$video_url<BR><BR>";} if ($uploaded_video) { print "<object id=\"MediaPlayer1\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows® Media Player components...\" type=\"application/x-oleobject\" width=\"640\" height=\"481\"> <param name=\"fileName\" value=\"modules/$module_name/uploaded_videos/$uploaded_video\"> <param name=\"animationatStart\" value=\"true\"> <param name=\"transparentatStart\" value=\"true\"> <param name='autoStart' value=\"false\"> <param name=\"showControls\" value=\"true\"> <param name=\"Volume\" value=\"-450\"> <embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\"modules/$module_name/uploaded_videos/$uploaded_video\" name=\"MediaPlayer1\" width=\"640\" height=\"481\" autostart=1 showcontrols=1 volume=-450> </object><BR><BR>";} ////////1 end///////////////// //////////2 start///////////// if ($text_2) { print "$text_2<BR><BR>"; } if ($video_url_2) { print "$video_url_2<BR><BR>";} if ($uploaded_video_2) { print "<object id=\"MediaPlayer1\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows® Media Player components...\" type=\"application/x-oleobject\" width=\"640\" height=\"481\"> <param name=\"fileName\" value=\"modules/$module_name/uploaded_videos/$uploaded_video_2\"> <param name=\"animationatStart\" value=\"true\"> <param name=\"transparentatStart\" value=\"true\"> <param name='autoStart' value=\"false\"> <param name=\"showControls\" value=\"true\"> <param name=\"Volume\" value=\"-450\"> <embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\"modules/$module_name/uploaded_videos/$uploaded_video_2\" name=\"MediaPlayer1\" width=\"640\" height=\"481\" autostart=1 showcontrols=1 volume=-450> </object><BR><BR>";} ////////2 end///////////////// //////////3 start///////////// if ($text_3) { print "$text_3<BR><BR>"; } if ($video_url_3) { print "$video_url_3<BR><BR>";} if ($uploaded_video_3) { print "<object id=\"MediaPlayer1\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows® Media Player components...\" type=\"application/x-oleobject\" width=\"640\" height=\"481\"> <param name=\"fileName\" value=\"modules/$module_name/uploaded_videos/$uploaded_video_3\"> <param name=\"animationatStart\" value=\"true\"> <param name=\"transparentatStart\" value=\"true\"> <param name='autoStart' value=\"false\"> <param name=\"showControls\" value=\"true\"> <param name=\"Volume\" value=\"-450\"> <embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\"modules/$module_name/uploaded_videos/$uploaded_video_3\" name=\"MediaPlayer1\" width=\"640\" height=\"481\" autostart=1 showcontrols=1 volume=-450> </object><BR><BR>";} ////////3 end///////////////// //////////4 start///////////// if ($text_4) { print "$text_4<BR><BR>"; } if ($video_url_4) { print "$video_url_4<BR><BR>";} if ($uploaded_video_4) { print "<object id=\"MediaPlayer1\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows® Media Player components...\" type=\"application/x-oleobject\" width=\"640\" height=\"481\"> <param name=\"fileName\" value=\"modules/$module_name/uploaded_videos/$uploaded_video_4\"> <param name=\"animationatStart\" value=\"true\"> <param name=\"transparentatStart\" value=\"true\"> <param name='autoStart' value=\"false\"> <param name=\"showControls\" value=\"true\"> <param name=\"Volume\" value=\"-450\"> <embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\"modules/$module_name/uploaded_videos/$uploaded_video_4\" name=\"MediaPlayer1\" width=\"640\" height=\"481\" autostart=1 showcontrols=1 volume=-450> </object><BR><BR>";} ////////4 end///////////////// //////////5 start///////////// if ($text_5) { print "$text_5<BR><BR>"; } if ($video_url_5) { print "$video_url_5<BR><BR>";} if ($uploaded_video_5) { print "<object id=\"MediaPlayer1\" CLASSID=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows® Media Player components...\" type=\"application/x-oleobject\" width=\"640\" height=\"481\"> <param name=\"fileName\" value=\"modules/$module_name/uploaded_videos/$uploaded_video_5\"> <param name=\"animationatStart\" value=\"true\"> <param name=\"transparentatStart\" value=\"true\"> <param name='autoStart' value=\"false\"> <param name=\"showControls\" value=\"true\"> <param name=\"Volume\" value=\"-450\"> <embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\"modules/$module_name/uploaded_videos/$uploaded_video_5\" name=\"MediaPlayer1\" width=\"640\" height=\"481\" autostart=1 showcontrols=1 volume=-450> </object>";} this is why i need the file data to be put into SQL so i can pull it for the episode page the admin part that puts the video info into the data base looks like this function videos() { global $prefix, $db, $sitename, $multilingual, $admin, $admin_file, $sitename, $module_name, $user_prefix; include_once(NUKE_BASE_DIR.'header.php'); <form enctype=\"multipart/form-data\" method=\"post\" action=\"admin.php?op=videos&op=video_added\"> <table border=\"3\" width=\"100%\"> <tr> <td class=\"background1\"> <table border=\"3\" width=\"100%\"> <tr> <td class=\"background6\"> Show's Title: </td><td class=\"background1\"> <select name=\"title\">"; $data = mysql_query("SELECT * FROM videos_series ORDER BY title ASC") or die(mysql_error()); while($info = mysql_fetch_array( $data )) { $titleseries = $info['title']; echo " <option name=\"title\" value=\"$titleseries\">$titleseries</option> ";} echo " </select> <tr> <td class=\"background6\"> video url title: </td><td class=\"background1\"> <select name=\"url_title\">"; $data = mysql_query("SELECT * FROM videos_series ORDER BY url_title ASC") or die(mysql_error()); while($info = mysql_fetch_array( $data )) { $url_title2 = $info['url_title']; echo " <option name=\"url_title\" value=\"$url_title2\">$url_title2</option> ";} echo " </select> </td> </tr> </td> </tr> <tr> <td class=\"background6\"> Episode #: </td><td class=\"background1\"><input type=\"text\" name=\"ep\"> </td> </tr> <tr> <td class=\"background6\"> Put Video text here shows up at the top of Video 1: </td><td class=\"background1\"><input type=\"text\" name=\"text\"> </td> </tr> <tr> <td class=\"background6\"> Video Embed #1: </td><td class=\"background1\"><input type=\"text\" name=\"video_url\"> </td> </tr> <tr> <td class=\"background6\"> Uploaded Video Embed #1: </td><td class=\"background1\"><input class=\"video_select\" type=\"file\" name=\"file[]\" id=\"uploaded_video[]\"> </td> </tr> <tr> <td class=\"background6\"> Put Video text here shows up at the top of Video 2: </td><td class=\"background1\"><input type=\"text\" name=\"text_2\"> </td> </tr> <tr> <td class=\"background6\"> Video Embed #2: </td><td class=\"background1\"><input type=\"text\" name=\"video_url_2\"> </td> </tr> <tr> <td class=\"background6\"> Uploaded Video Embed #2: </td><td class=\"background1\"><input class=\"video_select\" type=\"file\" name=\"file[]\" id=\"uploaded_video[]\"> </td> </tr> <tr> <td class=\"background6\"> Put Video text here shows up at the top of Video 3: </td><td class=\"background1\"><input type=\"text\" name=\"text_3\"> </td> </tr> <tr> <td class=\"background6\"> Video Embed #3: </td><td class=\"background1\"><input type=\"text\" name=\"video_url_3\"> </td> </tr> <tr> <td class=\"background6\"> Uploaded Video Embed #3: </td><td class=\"background1\"><input class=\"video_select\" type=\"file\" name=\"file[]\" id=\"uploaded_video[]\"> </td> </tr> <tr> <td class=\"background6\"> Put Video text here shows up at the top of Video 4: </td><td class=\"background1\"><input type=\"text\" name=\"text_4\"> </td> </tr> <tr> <td class=\"background6\"> Video Embed #4: </td><td class=\"background1\"><input type=\"text\" name=\"video_url_4\"> </td> </tr> <tr> <td class=\"background6\"> Uploaded Video Embed #4 : </td><td class=\"background1\"><input class=\"video_select\" type=\"file\" name=\"file[]\" id=\"uploaded_video[]\"> </td> </tr> <tr> <td class=\"background6\"> Put Video text here shows up at the top of Video 5: </td><td class=\"background1\"><input type=\"text\" name=\"text_5\"> </td> </tr> <tr> <td class=\"background6\"> Video Embed #5: </td><td class=\"background1\"><input type=\"text\" name=\"video_url_5\"> </td> </tr> <tr> <td class=\"background6\"> Uploaded Video Embed #5: </td><td class=\"background1\"><input class=\"video_select\" type=\"file\" name=\"file[]\" id=\"uploaded_video[]\"> </td> </tr> </table> <input type=\"Submit\"> </form> </td> </tr> </table> "; function video_added() { global $prefix, $db, $admin_file, $module_name; include_once(NUKE_BASE_DIR.'header.php'); OpenTable(); echo "<center><BR><BR>" ."[ <a href=\"admin.php?op=videos\">"._RBACK."</a> ] </center>"; $timestamp = time();; $destpath = "upload/"; $target = "$target$the_file"; while(list($key,$value) = @each($_FILES["file"]["name"])) { if(!empty($value)){ if ($_FILES["file"]["error"][$key] > 0) { echo "Error: " . $_FILES["file"]["error"][$key] . "<br/>" ; } else { //take this off to remove the file name $file_name = $timestamp.$_FILES['file']['name']; $source = $_FILES["file"]["tmp_name"][$key] ; $filename = $_FILES["file"]["name"][$key]; $filename = strtolower($filename); $filename = "$timestamp$filename"; move_uploaded_file($source, $destpath . $filename) ; $final_file_location = "$destpath$filename"; echo "<center>Uploaded to: $final_file_location<br/></center>"; //just remove the image source code below if not for images echo "<center><h2><a href=\"$final_file_location\"target=\"_blank\"><img src=\"$final_file_location\" border=\"0\"></a></h2><center>"; } } } if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)) { echo "The file has been uploaded as $filename"; } else { echo "<BR>Upload your file."; } $ep=$_POST['ep']; $text=$_POST['text']; $video_url=$_POST['video_url']; $text_2=$_POST['text_2']; $video_url_2=$_POST['video_url_2']; $text_3=$_POST['text_3']; $video_url_3=$_POST['video_url_3']; $text_4=$_POST['text_4']; $video_url_4=$_POST['video_url_4']; $text_5=$_POST['text_5']; $video_url_5=$_POST['video_url_5']; $url_title=$_POST['url_title']; $title=$_POST['title']; $query = "INSERT INTO videos VALUES ('','','$title','$ep','$text','','','','$video_url','$uploaded_video','$text_2','$video_url_2','$uploaded_video_2','$text_3','$video_url_3','$uploaded_video_3','$text_4','$video_url_4','$uploaded_video_4','$text_5','$video_url_5','$uploaded_video_5','$url_title','','')"; mysql_query($query) or die("A MySQL error has occurred.<br />Your Query: " . $query . "<br /> Error: (" . mysql_errno() . ") " . mysql_error()); echo "<center><BR><BR>" ."[ <a href=\"admin.php?op=videos\">"._RBACK."</a> ] </center>"; CloseTable(); include_once(NUKE_BASE_DIR.'footer.php'); } its just a for form to full in the blinks in the database bc only admins can add anything is why im not worry to much about the file types/size but i would like to add that lol
  22. what im trying to do is take the files name and put them into SQL so i can pull them up on other parts of the site but i dont know how as u already lost me lol for me to do it i would need to find a way to get the files new names so i can put them where i need to in SQL SQL is something like "title , upload_1, upload_2, upload_3, upload_4, upload_5" need to put the name where the upload is in the same order as they was uploaded what i pray is not to much of a pain lol not sure how to put it into the while loop or the array part sorry
  23. now how would i go about putting the names into SQL ? if i use $filename it only use the first file's name and not the others
  24. yeah i been looking into trying to find a way to say what types but not sure yet as to how to put them in or at what point in the coding to put it in and i seen people saying there more then one type of code to do this a mime and a "if" ? and ty you for your help with the coding it works great its way better then what i came up with lol now i know this is how you stop files types but not sure what to put in the { } to make the file stop uploading $ext = findexts ($_FILES['photo']['name']) ; if ($ext=="pdf" || $ext=="gif" || $ext=="jpeg" || $ext=="jpg" || $ext=="png") { echo "files are not allowed!</div>"; } [code] now this works on this code but on the code you have listed im not sure yet as to where the "$ext" part is on ur code lol
  25. ok nevermind about getting it to put it into the SQL database i had to use $uploaded_video_4=$ran24.$ext4; )remove the $_POST
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.