- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 11
- Posts with Upvotes
- 10
- Upvoting Members
- 10
- Downvotes Received
- 36
- Posts with Downvotes
- 11
- Downvoting Members
- 14
131 Posted Topics
Re: [url]http://www.tech-recipes.com/rx/2345/import_csv_file_directly_into_mysql/[/url] [url]http://www.codewalkers.com/c/a/Database-Code/Import-CSV-files-into-MySQL/[/url] join here and get his code. [url]http://www.phpclasses.org/browse/package/2917.html[/url] | |
Re: try this: avoid <? ?> should be <?php ?> depends if your php.ini allowed the use of <? ?> ![]() | |
Re: [QUOTE=dmsapin;1080651]hello mr daniweb. ive tried your code about the same number of time u have posted it.. and i must say.. its bull****. admin pls remove the thread.[/QUOTE] It works on my site! That rm_daniweb code is GREAT!!! | |
Re: [CODE]logout: echo "<p><a href=\"logout.php\">Click here to logout!</a></p>"; this will destroy the session and return to your index.php file. Logout.php <?php session_start(); session_unset(); session_destroy(); // Logged out, return home. Header("Location: index.php"); ?> [/CODE] | |
Re: [CODE]reinstall your php 5 choose "CHANGE" then "CHOOSE ITEM TO INSTALL" select the "EXTENSION" select the "zip". then edit php.ini put this. [PHP_ZIP] extension=php_zip.dll look for the zip dll in your ext folder. [/CODE] | |
Re: you have to use MANUAL in disk partitioning..in Linux..and install your fedora iso example: fdisk -l Device Boot Start End Blocks Id System /dev/sda1 * 1 13 102400 7 HPFS/NTFS /dev/sda2 13 20934 168048640 7 HPFS/NTFS - WINDOWS 7 /dev/sda3 20934 24759 30720000 7 HPFS/NTFS - DRIVE D: /dev/sda4 24759 … | |
Re: put this on top of your product.php [CODE] include("class.php");[/CODE] | |
Re: [CODE]if ($sectionID==4 && $categoryID!=21 && $categoryyID!=27){[/CODE] | |
Re: as far as my knowledge is concern you have to communicate with the assigned port number from 0 to 65535. ftp 21 http 80 etc...etc... | |
Re: hi can you try do not put the "<xs:attribute/>" inside the <xs:sequence></xs:sequence> [CODE] <xs:element name="listings"> <xs:complexType> <xs:sequence> <xs:element name="listing" maxOccurs="unbounded" ref="listing"/> <xs:attribute name="id" use="required" type="xs:integer"/> <xs:attribute name="kind"use="required" type="xs:integer"/> </xs:sequence> </xs:complexType> </xs:element> should be like this... <xs:element name="listings"> <xs:complexType> <xs:sequence> <xs:element name="listing" maxOccurs="unbounded" ref="listing"/> </xs:sequence> [COLOR="Red"]<!--here's your sequence closing tag -->[/COLOR] … | |
Re: [url]http://httpd.apache.org/docs/1.3/mod/core.html#limitrequestline[/url] | |
![]() | |
Hi All, I want to run a HIDDEN FUNCTION when I click "OK"...not "CANCEL" in window.onbeforeunload() is it possible? [CODE]<script type="text/javascript"> window.onbeforeunload = function() { var bUnsavedFields = true; if(bUnsavedFields) { window.event.returnValue = "I WANT THE OK BUTTON NOT CANCEL :) TO TRIGGER HIDDEN FUNCTION AFTER EXIT"; } setTimeout("myFunction();",5000); } … | |
Re: your code is working fine.......try to put your <?=$sucesso?> in SESSION VARIABLE. $_SESSION['success']= $successo; call this $_SESSION['success'] not the $successo because your varibale become local to each page to make it global use $_SESSION; | |
Re: as far as my knowledge is concern... var $dom; $body, $root is global inside your function....if you use that inside the class use that in this format "$this->dom; $this->body; $this->root". change all your variables with this "$this->[variables]; i hope it helps. | |
Re: ftp your site and type pwd that is your root directory :-) | |
Re: alert and back to referrer: echo "<script>alert(\"Username not found.\")</script>"; die("<script type=\"text/javascript\">window.history.back();</script>"); | |
Re: as far as my knowledge is concern. create 2 tables company and jobs for every (primary key)"companyid" match in jobs table (foreign key) "companyid". from their you can count how many jobs per company. that is one-many relationship of database. | |
Re: [CODE]use extract($_POST); after you submit your form in action. echo every[fieldname] and you will see the value; eg. echo "$first_name"; [/CODE] | |
Hi All, I just want to share my simple program :-) [url]http://www.momococo.com/nmbp/ajax/virtual_edc_sales.php[/url] Isaiah 9:6, Isaiah 7:14, Matthew 1:22-23, Jude 1:5, 1 John 4:2-3, I Timothy 3:16 [url]http://armandecastro.wordpress.com[/url] | |
Re: Try this: [url]http://evolt.org/node/60384[/url] Admin/user If you want multiple login with the number of cashier, supervisor etc... Admin/master/agent/user/guest [url]http://sourceforge.net/projects/phploginsystemw/[/url] | |
hi guys! I have dell laptop inspiron 630m everytime I plugin the Ethernet cable the 1394 Connection is the one always connected not my Local Area Connection (Broadcom 440x 10/100) Under my Network Adapters: --1394 Net adapter --Broadcom 440x 10/100 intergrated controller --Intel(R) PRO/Wireless 2200BG Network Connection All devices are … | |
Hi, my pc keep on looping in user login. Logon/User options always come back. pressing f8 and try all options the same issue arise even administrator and user keep on looping and looping. | |
Re: [CODE]//put your file in array $narray[$i]=$file; //sort it rsort($narray); //list it for($i=0; $i<sizeof($narray); $i++) echo $narray[$i]; {[/CODE] | |
Re: then mark every id with true. if not true available. | |
Re: run in safe mode then use the system restore return your pc configuration last month. Accessories-> system tools - system restore | |
Re: Read this and you will understand. Classes in php is a OOP programming. [url]http://en.wikipedia.org/wiki/Object-oriented_programming[/url] try to focus on inheritance, abstraction, encapsulation, polymorphism and decoupling. | |
Re: is it something like this? [CODE] #include <stdio.h> #define MAX 4 struct part { int number; char name[10]; } data[MAX] = {1, "Erap", 2, "Gloria", 3, "Aquino", 4, "Rizal" }; struct part *p_part; int count; main() { p_part = data; for (count = 0; count < MAX; count++) { printf("At … | |
Re: is this what you mean? [CODE] #include <stdio.h> int x,y; main() { for ( x = 0; x < 10; x++, printf( "\n" ) ) for ( y = 0; y < (x*2-1); y++ ) printf( "X" ); return 0; } [/CODE] | |
Re: your problem in line 38 and 67 is.... only your remarks. you put space in your remarks / * should be /* | |
Re: use ballpen/pencil/clip to reset your wifi by pressing the reset button for 30seconds actually there are lights indicator on that. | |
Hi, I have client having their secured local network and there is application on that Windows 2003 Server that I want to access in our office. How can I connect on their Windows 2003 Server using my internet connection with static ip already setup inside their server room. Do I … | |
Hi Guys, I have peer to peer networking 5 professional and 1 Home XP. The issue is why I cannot connect to Home XP by computer name but computer name / folder i can connect. example: //ip or //username -- cannot connect. /ip/folder1 or //pc1/folder1 --- can connect. what is … | |
I am very new in website developing. Anybody help me how to make this dropdown listing in Internet Explorer Browser the same listing in Firefox. I want the word extended in the size of the dropdown button. see attached images. Thank you. | |
Re: [CODE] this code detect the empty field. if(!$adminuser|| strlen($adminuser= trim($adminuser)) == 0){ echo "empty value"; } [/CODE] | |
Re: [CODE]$a = substr($_GET['cc_number'],-4,4); echo $a;[/CODE] | |
| |
Re: create and alias and call the alias. [CODE]$q="SELECT sum(credits) as youralias FROM courses WHERE course_code='$val'"; echo $row['youralias'];[/CODE] | |
Re: [CODE] <?php $theDeleteUrl = "delete_account.php?"; ?> <script language="JavaScript"> function confirmDelete(userid,usrname){ var currentURL = '<?=$theDeleteUrl;?>'; var okToDelete = confirm('Are you sure you want to delete this user?'); if(okToDelete){ location.href = currentURL + 'id=' + userid.toString() + '&x=' + usrname.toString(); } } </script> [/CODE] | |
Re: try this. [code] $mytext = ""; $mytext .= "<tr bgcolor='#EAEAEA'> <td><font size='3'>$busno</font></td> <td><font size='3'>$bustype</font></td> <td><font size='3'>$dep</font></td> <td><font size='3'>$plateno</td> <td><font color='red' size='3'><b>Php. $fare.00</font></b></td> <td><font size='3'><center>$seat</center></font></td> <td><font size='3'><center>$res</center></font></td> <td><font size='3'><center>$avail</center></font></td> <input type='hidden' name='idres' value='$id'> <input type='hidden' name='iddum' value='$busno'> <input type='hidden' name='btype' value='$bustype'> <input type='hidden' name='plateno' value='$plateno'> <input type='hidden' name='dep' value='$dep'> <input type='hidden' … | |
Re: as I can see in your code remove the "<?php echo $logoutAction ?>" just put only $logoutAction because you are in the echo() command. you are trying to echo a php tags. | |
Re: My suggestion is: in your auto_increment inside your table. Get the value of that auto_increment and join it in arguments "C" see $letter variable below. $letter = "C"; $output = $letter.auto_increment (get this inside your table) | |
Re: [CODE]create a function wherein the return value is the $dbarray. $dbarray = mysql_fetch_array($result); return $dbarray;[/CODE] | |
Re: 1. goto run 2. click cmd 3. go to the folder of the file. 4. type regsvr32 ijl11.dll /n if vista run your cmd as an Administrator. | |
Re: if it only one configuration better use define() the constant value. But if it is editable and you have a lots of clients with different configurations you have to search every username of the clients and apply each row configuration. Meaning your table is not only one row your table … | |
Re: create an array of the 25 to 40 recepient then make a loop on your mailer. | |
Re: [CODE]this is how you query empty fields. (!$_POST['Flavours'] || strlen($_POST['Flavours'] = trim($_POST['Flavours'])) == 0) if (isset($_POST['Flavours']) && isset($_POST['Sizes']) && isset($_POST['Product_Name']) || (($_POST['Sizes'] != ' ') || (!$_POST['Flavours']|| strlen($_POST['Flavours'] = trim($_POST['Flavours'])) == 0) .............................Size and Product Name[/CODE] |
The End.