Kyleva2204
12-07-2003, 08:26 PM
Hey, I'm really bored so I an accepting any script requests from yall. Just put them in this thred and I'll choose wich on I'll create. Be creative with your ideas :).
|
Click to See Complete Forum and Search --> : PHP script requests here Kyleva2204 12-07-2003, 08:26 PM Hey, I'm really bored so I an accepting any script requests from yall. Just put them in this thred and I'll choose wich on I'll create. Be creative with your ideas :). hammerslane 12-08-2003, 09:39 AM that is very generous of you my request to you: create a script which instructs another script to execute at 4pm every week day. the instructive script would be kept open 24*7*365 i've heard that it's impossible to do in php... :) Kyleva2204 12-08-2003, 07:17 PM hehehe, ur are right that is impossible to do in PHP, unless the script stayed open 24/7.. But if I were to do such a thing what would I use it on? Originally posted by hammerslane that is very generous of you my request to you: create a script which instructs another script to execute at 4pm every week day. the instructive script would be kept open 24*7*365 i've heard that it's impossible to do in php... :) Paul Jr 12-08-2003, 08:55 PM Aight, but remember, you offered :D. I want a script which will log the user's IP address into a file. The file must be created if it is not already so. The IP's will be logged line by line, i.e., no two IP's on the same line. I don't want the same IP logged twice, either. Thanks :D Kyleva2204 12-08-2003, 09:11 PM really thats it :? whoa.. doesnt seem to be to hard, hmm it would be a whole lot easeir if i knew alot about the fopen command but hey thats how i learn. Ok, ill try but i'm not making a promise because I have my own scripts i'm workin on. Its called Craze Music... ever heard of a script called Andromedia? its like that ALTO BETTER! and Free :).. yea but I havent worked on it in like ohh 4 days. But anyway I'll try this challange :) Thanks [hr] Originally posted by Paul Jr Aight, but remember, you offered :D. I want a script which will log the user's IP address into a file. The file must be created if it is not already so. The IP's will be logged line by line, i.e., no two IP's on the same line. I don't want the same IP logged twice, either. Thanks :D Kyleva2204 12-09-2003, 08:01 PM HEHEH done! everything works.. atleast I hope it does for you. :cool: the file is attatched.. all you have to do is open it up and configure it. no creating files or any of that sort. Kyle Kirby Originally posted by Paul Jr Aight, but remember, you offered :D. I want a script which will log the user's IP address into a file. The file must be created if it is not already so. The IP's will be logged line by line, i.e., no two IP's on the same line. I don't want the same IP logged twice, either. Thanks :D Kyleva2204 12-09-2003, 08:10 PM Hey sry, that one had a minor error in it that I just noticed. :-\ this one shouldnt :). --- Test File --- Main Script: http://rctsilver.com/ip.php Log File: http://rctsilver.com/ips.txt ----------------- Paul Jr 12-09-2003, 10:59 PM First visit to the page throws an error: Warning: touch(): Utime failed: Permission denied in C:\Program Files\Abyss Web Server\htdocs\test.php on line 37 But it works perfectly all other times. Kyleva2204 12-09-2003, 11:46 PM try this one :\ I made a little change.. <?php //////////////////////////////////////////////// // Script Created By: Kyle Kirby // // Email: kyleva2204@rctsilver.com // // Email2: eviljester@rctsilver.com // //////////////////////////////////////////////// $show_IP_warning = "1"; // 1 = show 0 = dont show // $IP_Log = "log.txt"; // Location to log. You can also include a begining part like 'logs/mylogs_' and it will put it in the dir logs and the file will be called mylogs_Tuesday, 09 December 2003.txt $showip = "1"; // Show the IP address in the IP warning. 1 = Yes 0 = no $Text1 = "Your IP has been logged! :: "; // If Show Warning is on, use this to disply the text before the IP address is show if show IP address is on. $Text2 = " ::"; // The text after the IP addres $hour_differance = "-8"; //////// Do not need to edit anymore ///////// $time = ($hourdiff * 60 * 60); $date = date("l, d F Y \t h:i a",time() + $time); $date2 = date("l, d F Y",time()); $IP = getenv('REMOTE_ADDR'); $all = "$IP :: $date ----------------------------- "; //// function createfile(){ $fpn = fopen($IP_Log, "w"); touch($IPLog); fclose($fpn); } if (!file_exists($IP_Log)){ createfile(); } else { $fr = fopen($IP_Log, "r"); while (!feof($fr)) { $IP_current = fread($fr, 1024); $current_ips = $IP_current; } } //// if (!strchr($current_ips, "$IP")){ $fp = fopen($IP_Log, "a"); flock($fp, 3); fwrite($fp, $all); fclose($fp); } if ($show_IP_warning == "1"){ print "$Text1"; if ($showip == "1"){ print "$IP"; } print "$Text2"; } ?> hammerslane 12-10-2003, 02:58 AM suprisingly, i was looking for this exact same script until you posted it. just a few questions... is it meant to ignore repeat visits? how long until it logs repeated visits? is it possible to ignore an IP address (ie mine) all together? many thanks bulletz 12-10-2003, 03:20 AM hi there! create a script that will request data using an http request, and transform that data to a HTML format using XSLT. if your interested just tell me, i'll give you more info. actually i'm currently in the process of doing this one, since im new to php/xml this one is tough for me (now). if you have an idea pls. inform me need help on this one bigtime! :) ctrl-t 12-10-2003, 07:30 AM Hi Kyleva2204, I have this problem with a site, and don't know how to deal with it! I was thinking about html, but would like a friendlyer environment like PHP.... I'm building a site for a friend who sells large caravans. He now has a page where the sells are located. look at: http://www.haascaravans.nl/index1.html and klick "Verkoop"! The pictures will be used as links to specific pages with axact details on that item (name, type, buildingyear, interior, pictures etc.) My friend has little html-knowledge and would like to update those items himself through some simple edit-page! I have no PHP experience.... How would you arrange this (if it is possible), and would you be interrested in helping me with this???????? Thanx in advance!!!!! hammerslane 12-10-2003, 07:33 AM Originally posted by ctrl-t klick "Verkoop"!where's 'verkoop'? ctrl-t 12-10-2003, 07:37 AM Originally posted by hammerslane where's 'verkoop'? Sorry... my link was wrong! http://www.haascaravans.nl/index1.html ctrl-t 12-10-2003, 07:40 AM Sorry... my link was wrong! http://www.haascaravans.nl/index1.html ctrl-t 12-10-2003, 07:53 AM I just want to let everybody know that the maximum of items that will be sold at haascaravans.nl will be 10! Maybe that help! hammerslane 12-10-2003, 07:55 AM who would set up the system? were you looking at having a database system for easy editing? do you know how to use databases? (harder to set up) or just edit in a GUI web page builder... ctrl-t 12-10-2003, 08:01 AM I will be the #peep# who will setup the system! I have no knowledge of databases (yet).... Sounds professional..... My first database driven site! :D Would you help me with it hammerslane???? :rolleyes: hammerslane 12-10-2003, 08:09 AM erm.. i could offer a bit of help... i started database driven websites about 2 months ago. so i'm still very new to it. does the server that the site is on have mysql or something? does it cost extra to activate some kind of database? does haans want to pay more for it? ctrl-t 12-10-2003, 08:43 AM For your information: The hosting the site is on offers - SSI - JS - 2 MySQL databases - PHP 3& 4 - Perl 5.6 - CGI-bin support - On a RedHat Linux 7.1 server with Apache HTTP Deamon! hammerslane 12-10-2003, 08:47 AM you sound as though you're pretty much sorted with the server aspect of things... i'm afraid i have 0% knowledge with using a linux server. you might want to look at a few mysql tutorial sites... http://www.devshed.com/Server_Side/MySQL/Intro/page1.html http://hotwired.lycos.com/webmonkey/programming/php/tutorials/tutorial4.html i'll leave the help up to others, farewell and good luck with it ctrl-t 12-10-2003, 10:10 AM Thanx hammerslane.... I can't help my hostingprovider uses apache... What do I do now?????? I feel left alone on a cold december day in some dark grey alley!!!!!! HEEEEEEEEEELLLLLLPPPPPP!!! hammerslane 12-10-2003, 10:13 AM relax. http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=6 Kyleva2204 12-10-2003, 01:54 PM hmm yes It is meant to ignore visits, never, no. But I will edit the script and all that to it. Just gimme a breather and I'll work things out oka? Originally posted by hammerslane suprisingly, i was looking for this exact same script until you posted it. just a few questions... is it meant to ignore repeat visits? how long until it logs repeated visits? is it possible to ignore an IP address (ie mine) all together? many thanks Kyleva2204 12-10-2003, 01:58 PM Originally posted by bulletz hi there! create a script that will request data using an http request, and transform that data to a HTML format using XSLT. if your interested just tell me, i'll give you more info. actually i'm currently in the process of doing this one, since im new to php/xml this one is tough for me (now). if you have an idea pls. inform me need help on this one bigtime! :) I would love to help but here are the prbs: I don't know anything about XSLT I even dunno what XSLT stands for? :\ sorry I couldnt be of any help.:( lukezweb 12-10-2003, 02:17 PM Originally posted by Kyleva2204 I would love to help but here are the prbs: I don't know anything about XSLT I even dunno what XSLT stands for? :\ sorry I couldnt be of any help.:( ok heres my request :) there are 5 pages in one index.php using actions firstly the page wiht no action - this is a page saying Login - Register then the next page which is index.php?action=login this is a login form wiht two fields a username and password field the third is the register page index.php?action=register this page has a form to register wiht: Username: Password: Age: Location: Sex: DOB: E-mail: (btw it all needs to connect to a mysql database :) the fourth page is index.php?action=member this page has this on it, it displays the username's username (of the person logged in) , it cannot be accessed wihtout being logged in) and also must have a logout button :) the fith and final page is index.php?actionadminmembers this is where the admin can edit members profiles :) its supposidly simple :) but i didnt get how to do it hope you cna try, thanks Luke Kyleva2204 12-10-2003, 03:19 PM sure no prb. I'll get started on it after I finnish the IP script :) Originally posted by lukezweb ok heres my request :) there are 5 pages in one index.php using actions firstly the page wiht no action - this is a page saying Login - Register then the next page which is index.php?action=login this is a login form wiht two fields a username and password field the third is the register page index.php?action=register this page has a form to register wiht: Username: Password: Age: Location: Sex: DOB: E-mail: (btw it all needs to connect to a mysql database :) the fourth page is index.php?action=member this page has this on it, it displays the username's username (of the person logged in) , it cannot be accessed wihtout being logged in) and also must have a logout button :) the fith and final page is index.php?actionadminmembers this is where the admin can edit members profiles :) its supposidly simple :) but i didnt get how to do it hope you cna try, thanks Luke Kyleva2204 12-10-2003, 04:30 PM Okay man I just finished it has some extra things and such. Just configure it where it says and then load the script for the first time, once u do so it will create all the files in the specifyed location (hopefully), then goto the location and open the ignore list, there you can add or delete IP addys that you don't want to be shown in the log. Enjoy :) Originally posted by hammerslane suprisingly, i was looking for this exact same script until you posted it. just a few questions... is it meant to ignore repeat visits? how long until it logs repeated visits? is it possible to ignore an IP address (ie mine) all together? many thanks <?php $time = ($hourdiff * 60 * 60); $date = date("l, d F Y",time()); $timet = date("h:i a",time() + $time); $IP = getenv('REMOTE_ADDR'); /////////////// Start Editing /////////////// //////////////////////////////////////////////// // Script Created By: Kyle Kirby // // Email: kyleva2204@rctsilver.com // // Email2: eviljester@rctsilver.com // //////////////////////////////////////////////// // For file names and shown text you can use // // codes to display certain things. Here is // // the list of the ones you can put in any of // // the feilds that use text and not numbers: // // $IP :: Use to show the IP address // // $date :: Use to display the date // // $timet :: Use to display the time // //////////////////////////////////////////////// $show_IP_warning = "1"; // 1 = show 0 = dont show // $IP_Warning = "Your IP has been logged! :: $IP ::"; // If Show Warning is on, use this to disply the text before the IP address is show if show IP address is on. $IP_Log = "log.txt"; // Location to log. You can also include a begining part like 'logs/mylogs_' and it will put it in the dir logs and the file will be called mylogs_Tuesday, 09 December 2003.txt $ignore_list = "ignore.txt"; // Ignore List Location with file name. $ignore_dup = "0"; // Ignore duplicated IPs. $output_IP = "$IP :: $date :: $timet"; // How it should look in the IP log. $seperator = "-----------------------------"; // The line under the IP address. $hour_differance = "-8"; // The hour difference on your server. /////////////// End Editing /////////////// $all = "$output_IP $seperator "; // Functions // function createfile($file){ $fpn = fopen($file, "w"); touch($file); fclose($fpn); } // // // Create & Read Ignore List // if (!file_exists($ignore_list)){ createfile($ignore_list); } $fri = fopen($ignore_list, "r"); $ignore_size = filesize($ignore_list); $ignore_list_text = fread($fri, $ignore_size); fclose($fri); // // // File Exists // if (!file_exists($IP_Log)){ createfile($IP_Log); } if (file_exists($IP_Log)){ $fr = fopen($IP_Log, "r"); $Log_Size = filesize($IP_Log); $current_ips = fread($fr, $Log_Size); fclose($fr); } // // // Ignore Dup // if ($ignore_dup == "1"){ if (!strchr($current_ips, "$IP")){ if (!strchr($ignore_list_text, "$IP")){ $fp = fopen($IP_Log, "a"); flock($fp, 3); fwrite($fp, $all); fclose(); } } } else { if (!strchr($ignore_list_text, "$IP")){ $fp = fopen($IP_Log, "a"); flock($fp, 3); fwrite($fp, $all); fclose(); } } // // // IP Warning // if ($show_IP_warning == "1"){ print "$IP_Warning"; } // // ?> Paul Jr 12-10-2003, 04:57 PM Wow, Kyleva2204, you seem to have your work cut out for you... You all are abusing his/her generosity -- shame on you all!!! :D I'll check out that revised IP script A.S.A.P., thanks a lot! :) Kyleva2204 12-10-2003, 07:43 PM thanxOriginally posted by Paul Jr Wow, Kyleva2204, you seem to have your work cut out for you... You all are abusing his/her generosity -- shame on you all!!! :D I'll check out that revised IP script A.S.A.P., thanks a lot! :) hammerslane 12-11-2003, 03:11 AM Kyleva2204: extreme amounts of thanks... thought i might let you know about an error being returned on your revised ignore IP script...Warning: strchr(): Empty delimiter. in \\server\domains\e\example.com\user\htdocs\index.php on line 69 Warning: strchr(): Empty delimiter. in \\server\domains\e\example.com\user\htdocs\index.php on line 70 Warning: Wrong parameter count for fclose() in \\server\domains\e\example.com\user\htdocs\index.php on line 74 line 69: if (!strchr($current_ips, "$IP")){ line 70: if (!strchr($ignore_list_text, "$IP")){ line 74: fclose(); the log (http://domain541411.sites.fasthosts.com/log.txt) works... but doesn't display the IP that was logged. i'm not posting this in hope of a hurried code-fix... just fyi.. and all that :rolleyes: youlilsheshe 12-11-2003, 08:51 PM Homeade forums with a P.M; i would like to tweek it up a bit after you make it. damon2003 12-12-2003, 05:26 AM Does anyone how to fix this. It works, bit I want it to get the resultset to contain everything that the user request, even duplicate values. At the moment, this script gets code from several textfield, that the user fills in. The coresponding poroducts aare then displayed. The problem is that if the user, for example, enters 100 twice, only once instance of the 100 product is displayed. If they enter 100, then 200 though this works fine, its only if the user enters duplicated values. The reason I want duplicate values to be displayed is because some products allow personalisation, thanks <?php ini_set('session.cookie_lifetime', '86400'); session_start(); header("Cache-control: private"); ?> <?php require_once('../../Connections/fhsc.php'); ?> <?php $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1; $mmTextfield27_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield27'])) { $mmTextfield27_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield27'] : addslashes($HTTP_GET_VARS['textfield27']); } $mmTextfield26_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield26'])) { $mmTextfield26_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield26'] : addslashes($HTTP_GET_VARS['textfield26']); } $mmTextfield25_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield25'])) { $mmTextfield25_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield25'] : addslashes($HTTP_GET_VARS['textfield25']); } $mmTextfield24_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield24'])) { $mmTextfield24_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield24'] : addslashes($HTTP_GET_VARS['textfield24']); } $mmTextfield23_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield23'])) { $mmTextfield23_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield23'] : addslashes($HTTP_GET_VARS['textfield23']); } $mmTextfield22_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield22'])) { $mmTextfield22_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield22'] : addslashes($HTTP_GET_VARS['textfield22']); } $mmTextfield21_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield21'])) { $mmTextfield21_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield21'] : addslashes($HTTP_GET_VARS['textfield21']); } $mmTextfield20_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield20'])) { $mmTextfield20_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield20'] : addslashes($HTTP_GET_VARS['textfield20']); } $mmTextfield19_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield19'])) { $mmTextfield19_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield19'] : addslashes($HTTP_GET_VARS['textfield19']); } $mmTextfield18_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield18'])) { $mmTextfield18_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield18'] : addslashes($HTTP_GET_VARS['textfield18']); } $mmTextfield17_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield17'])) { $mmTextfield17_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield17'] : addslashes($HTTP_GET_VARS['textfield17']); } $mmTextfield16_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield16'])) { $mmTextfield16_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield16'] : addslashes($HTTP_GET_VARS['textfield16']); } $mmTextfield15_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield15'])) { $mmTextfield15_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield15'] : addslashes($HTTP_GET_VARS['textfield15']); } $mmTextfield14_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield14'])) { $mmTextfield14_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield14'] : addslashes($HTTP_GET_VARS['textfield14']); } $mmTextfield13_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield13'])) { $mmTextfield13_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield13'] : addslashes($HTTP_GET_VARS['textfield13']); } $mmTextfield12_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield12'])) { $mmTextfield12_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield12'] : addslashes($HTTP_GET_VARS['textfield12']); } $mmTextfield11_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield11'])) { $mmTextfield11_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield11'] : addslashes($HTTP_GET_VARS['textfield11']); } $mmTextfield10_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield10'])) { $mmTextfield10_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield10'] : addslashes($HTTP_GET_VARS['textfield10']); } $mmTextfield9_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield9'])) { $mmTextfield9_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield9'] : addslashes($HTTP_GET_VARS['textfield9']); } $mmTextfield7_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield7'])) { $mmTextfield7_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield7'] : addslashes($HTTP_GET_VARS['textfield7']); } $mmTextfield8_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield8'])) { $mmTextfield8_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield8'] : addslashes($HTTP_GET_VARS['textfield8']); } $mmTextfield6_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield6'])) { $mmTextfield6_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield6'] : addslashes($HTTP_GET_VARS['textfield6']); } $mmTextfield3_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield3'])) { $mmTextfield3_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield3'] : addslashes($HTTP_GET_VARS['textfield3']); } $mmTextfield4_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield4'])) { $mmTextfield4_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield4'] : addslashes($HTTP_GET_VARS['textfield4']); } $mmTextfield5_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield5'])) { $mmTextfield5_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield5'] : addslashes($HTTP_GET_VARS['textfield5']); } $mmTextfield2_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield2'])) { $mmTextfield2_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield2'] : addslashes($HTTP_GET_VARS['textfield2']); } $mmTextfield_Recordset1 = "xxxxx"; if (isset($HTTP_GET_VARS['textfield'])) { $mmTextfield_Recordset1 = (get_magic_quotes_gpc()) ? $HTTP_GET_VARS['textfield'] : addslashes($HTTP_GET_VARS['textfield']); } mysql_select_db($database_fhsc, $fhsc); $query_Recordset1 = sprintf("SELECT PDFIL.PDF_KEY_PRODUCT, PDFIL.PDF_LONG_DESCRIPTION, PDFIL.PDF_SELLING_PRICE, PDFIL.PDF_PERS_FLAG, PDFIL.PDF_PERS_INITIALS, PDFIL.PDF_MIN_SIZE, PDFIL.PDF_MAX_SIZE FROM PDFIL WHERE (PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s' OR PDFIL.PDF_KEY_PRODUCT='%s') AND PDFIL.PDF_KEY_SEASON='S' ORDER BY PDFIL.PDF_KEY_PRODUCT ASC", $mmTextfield_Recordset1,$mmTextfield2_Recordset1,$mmTextfield3_Recordset1,$mmTextfield4_Recordset1,$ mmTextfield5_Recordset1,$mmTextfield6_Recordset1,$mmTextfield7_Recordset1,$mmTextfield8_Recordset1,$ mmTextfield9_Recordset1,$mmTextfield10_Recordset1,$mmTextfield11_Recordset1,$mmTextfield12_Recordset 1,$mmTextfield13_Recordset1,$mmTextfield14_Recordset1,$mmTextfield15_Recordset1,$mmTextfield16_Recor dset1,$mmTextfield17_Recordset1,$mmTextfield18_Recordset1,$mmTextfield19_Recordset1,$mmTextfield20_R ecordset1,$mmTextfield21_Recordset1,$mmTextfield22_Recordset1,$mmTextfield23_Recordset1,$mmTextfield 24_Recordset1,$mmTextfield25_Recordset1,$mmTextfield26_Recordset1,$mmTextfield27_Recordset1); $Recordset1 = mysql_query($query_Recordset1, $fhsc) or die(mysql_error()); $row_Recordset1 = mysql_fetch_assoc($Recordset1); $totalRows_Recordset1 = mysql_num_rows($Recordset1); ?> MattchuB 12-12-2003, 08:26 PM Kyleva2204, I have a request of you. I asked around the javascript forums and they said this couldn't be done, but can you make me a script that places a random url in a div? I want it to randomize once a week between a set of urls that I specify. If this is possible, I would be very very grateful. It looks like php is a lot more flexible than javascript. :) Thanks for your help. pyro 12-12-2003, 08:41 PM This thread is gay. I'm sure it started out well meaning, but when someone starts a thread offering help as such, it turns into a place where people dump multiple request, that have nothing to do with each other. This causes people to not get their answers, and those of use on here to help to not even see the requests. MattchuB, if you need help with this, start a new thread, and I'd be happy to offer advise. Paul Jr 12-12-2003, 10:27 PM One) Kyleva2204, the IP script works! Thanks a bunch!!! Two) Originally posted by Pyro This thread is gay. Couldn't have said it any better myself. ;) Kyleva2204 07-19-2004, 03:49 PM HEHEH... SRY ppl... but i opend this thread cuz I was bored and didn't have anything to do.. um sorry bout the flaws in the IP script.. but im into greater parts in the web! I have my own company and I have a job.. it pays over $2,000 + /m (woot) life is good dont ya think!?!?!?! Oh and what do u know!? Im only 14.. hehe.. sry I just had to brag about that.... :-\ Kurt0803 07-23-2004, 11:44 AM I want a script built and I dont want to give to many details here so please email me direct for the details needed in the script but here is a jift of it. I want a script that is a form on my webpage that someone would submit what they want. In turn I would have a list of members that pay a yearly dues to recieve this information except address adn contact information. After they recieve the minor details there needs adn location but again no address name phone numbers etc. they in turn pay a fee to recieve the contact information. After the fee is paid they in turn get another email with the contact information and lead details. and the person whom wanted the product or service would also get an email saying that abc is wantign to fullfill there request. So you think you can do somethign like this? Like I said that is just a jift of it as I dont want to give away my idea tottally so I can call you or you can contact me by email and I will give you the finer details website address etc. that I want this to work on.. Ty in advance.. i know you hate rushes but I am kinda pressed for time on this as well... Kyleva2204 07-23-2004, 11:54 AM eh... Sry man. but i have nuff work on my hands.. during the school year I will help ya out.. ^_^.. um E-mail me with the finer details and ill get back to when I can do it.. :-) Originally posted by Kurt0803 I want a script built and I dont want to give to many details here so please email me direct for the details needed in the script but here is a jift of it. I want a script that is a form on my webpage that someone would submit what they want. In turn I would have a list of members that pay a yearly dues to recieve this information except address adn contact information. After they recieve the minor details there needs adn location but again no address name phone numbers etc. they in turn pay a fee to recieve the contact information. After the fee is paid they in turn get another email with the contact information and lead details. and the person whom wanted the product or service would also get an email saying that abc is wantign to fullfill there request. So you think you can do somethign like this? Like I said that is just a jift of it as I dont want to give away my idea tottally so I can call you or you can contact me by email and I will give you the finer details website address etc. that I want this to work on.. Ty in advance.. i know you hate rushes but I am kinda pressed for time on this as well... pyro 07-23-2004, 02:08 PM This thread defeats some of the usefulness of the forums, and since it keeps coming back from the dead, it's going to be locked. webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |