- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
16 Posted Topics
I am trying to connect and fetch messages of my hosting's email address using imap_open(), but its throwing errors. $server = '{mail.booksnearby.in:143/imap/ssl/novalidate-cert}INBOX'; $imap_connection = imap_open($server, $login, $password); $mailboxinfo = imap_mailboxmsginfo($imap_connection); $messageCount = $mailboxinfo->Nmsgs; The above throws this error: Array ( [0] => Retrying PLAIN authentication after [AUTHENTICATIONFAILED] Authentication failed. If … | |
I have only coded 2 sites till now, first one in plain php (wall of php intermingled with js, html , super messy) and the other in codeigniter(much better as far as separating display with logic is concerned) now I have to code a website for a friend (designer). The … ![]() | |
My table: $query = "CREATE TABLE categories ( id int(11) NOT NULL auto_increment, name varchar(100) NOT NULL, parent int(11) NOT NULL, visible tinyint(11) NOT NULL DEFAULT 1, PRIMARY KEY (id) )" ; The query: SELECT t1.id ,t1.name FROM flipkart_categories AS t1 LEFT JOIN categories as t2 ON t1.id = t2.parent … | |
Say i have a list of items on a page . Now this list can be filtered by price ( in a simple POST form ) OR by discount (in another form element) OR by category links in the sidebar. Now if the user first filters by price and then … | |
This should be simple , but the explanations in books and tutorials don't make sense to me. what exactly does the clear property do? I want to know exactly ,EXACTLY what it does. Take for example this code: p.one { width: 200px ; float: left ; clear:both; } p.two { … | |
Hi, I am trying to implement a categories/subcategories feature for navigation. For this I am using the The adjacency model as described [url=http://sqllessons.com/categories.html]Here[/url] Description(copy pasta): This is the categories table: [CODE]create table categories ( id integer not null primary key , name varchar(37) not null , parentid integer null , … | |
This is the project I am reading from . [url]https://github.com/sasatomislav/PHP5-OOP-Cart[/url] [CODE] class Cart { <snip> private function __construct() {} /** * Fetch Cart instance * * @return Cart */ public function getInstance() { if (NULL === self::$_instance) { self::$_instance = new self; } return self::$_instance; } } <snip> // initialize … | |
Re: I think you have to change $conn to $this->conn in __construct ? [CODE] function __construct() { $dbServer = DB_SERVER; $dbName = DB_NAME; $this->conn = new PDO( "sqlsrv:Server=$dbServer;Database=$dbName", NULL, NULL); $this->conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); if ( $this->conn === false ) { echo "Could not connect.\n"; die; } }[/CODE] | |
Re: [CODE]<?php $array = array( 1 => array('test' => '1', 'test2' => '2' ), 2 => array('test' => '4','test2' => '2' ) ); foreach ($array as $masterkey => $aa) { foreach($aa as $key => $a) { if ($key == 'test2' && $a == '2') { echo $masterkey ; } } } … | |
user types text in a text box, the text is sent to a php script with ajax. The response is used to populate a select menu. I am getting a xmlResponse is null error with some browsers. Steps to recreate problem: 1. Goto [url=http://kutchbhi.x10.mx/choose.php]Example page[/url] , in firefox/chrome. 2. type … | |
The situations: I have text in a var, that I am assigning to the innerhtml of a 'p' tag . The text has whitespace at the end. The problem: The last whitespace isn't rendered, by p tags. IT is ignored. Is there a tag other than the pre tag, that … | |
The following sets a keydown event, preventing further input when a condition is achieved. [CODE]<textarea rows="5" cols="30" onkeydown="return checkLength(this)"></textarea> <script type="text/javascript"> var maxLength = 30; function checkLength(elem) { if (elem.value.length == maxLength) { return false; } return true; } </script> [/CODE] IN the above I don't understand this part: onkeydown="return … | |
I made a classified site and am concerned that my database design amd sql queries may not be optimal. Need your suggestions. This is how the site works now: The user selects his colony, and my app shows posts made from the colony and posts made from nearby colonies. 2 … | |
[CODE] <script type="text/javascript"> aLabe = document.getElementById('alabel') ; function init(){ aLabe.innerHTML= "asdf" ; } </script> <body onload="init()"> <div id="container"> <div id="header" > Google maps Intro 1</div> <div id="alabel">Yo!!</div> <div id="map_canvas"></div> </div> </body> [/CODE]In the above,line 4 throws an aLabe is null error. Why is this? isn't aLabe a global var which … | |
Trying to make a form's background transparent, without it losing its ability to receive clicks. this.Opacity makes the whole form transparent (not just the background [CODE] BackColor = Color.Red; TransparencyKey = BackColor; [/CODE] makes the background of the form transparent and click through-able. I want the form to be transparent … | |
Currently I am reading this book -> Microsoft - Programming Windows API 5th . But it was released in 1998 . The very first Hellowin program in this book seems incompatible with xp sp3 (it didn't mention something that needed to be #defined). So can someone point me to a … |
The End.