- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Looking around in Forum :)
10 Posted Topics
Hi guys, could you tell me how to solve this problem. This is what i've done. The result show : [9, 2, 6] [3, 9, 5] l1 = [4,9,2,6] l2 = [3,9,4,5] i = 0 j = 0 while(i < len(l1)): while(j < len(l2)): if(l1[i] == l2[j]): del(l1[i]) del(l2[j]) j … | |
Hello, I've got laptop K72Jr and I would to upgrade my RAM. Could someone tell me if these caracteristics of new RAM is compatible for my laptop. Thanks This is caracteristics of my previous RAM: DIMM: 1 SMBus address 0x50 Memory type DDR3 Module format SO-DIMM Manufacturer (ID) ASint Technology … | |
Re: *mysql_connect* this extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. :( ![]() | |
Re: Is hard to read your code. Its to long :) Well, I noticed in `<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">`. U should write : `<form method="post" action="<? $_SERVER['PHP_SELF'] ?>" >`. Try do not use echo. and don't forget to change your SMTP in php.ini *[mail function]* Let me know if … | |
Re: All depends on the structure of your file and your logical of programming. Personaly, the basic are 4 pages (index.php, base.php is for connexion class, derive.php & param.inc.php) **index.php** require('*.php'); require('*.php'); include_once('*.inc.php'); $mysqli = new mysqli(MYHOST, MYUSER, MYPASS, BASE); $objDerive = new Derive(***); $objDerive->X(***); **base.php** class Base { /* DECLARATION … | |
Hello, I created a dynamic object but I do not know how to use it when the instanciation of the object is finished. I would like to call some methodes from Class Base by an objet that I created dynamically. Can you explain me, pls? Thank you This is my … | |
Re: Sorry, I don't understand what you really want to do exacly. | |
Re: I've heard some routeur has a limitation for computer connection. Not beacause of subnet. I don't know is that true or not. | |
Re: Have you encrypted your password in your data base when you save it? If yes, you should dechiper your password before `if($password == $p_password )`. Try using echo to show what you got in $p_password, before the condition. | |
Someone please give me some idea to solve this question ? Should I use Interface or I can use only Heritage ? Write classes implementing the management industrial tools: * Each one tools can be started, stopped or be stopped urgently. * There are three families of tools : 1. … |
The End.