-
Replied To a Post in need help: list articles by multi categories and subcategories
If you want to list all articles of a category and its subcategories recursively order by date just add an order by clause in line 49 (of the code I … -
Replied To a Post in need help: list articles by multi categories and subcategories
If the only thing different that you want to do is to display the tree down with subcategories and articles NOT from the top parent category but from one other … -
Replied To a Post in need help: list articles by multi categories and subcategories
I have seen a number of questions of that type and I am thinking of writing a tutorial here about the Indexed List Model in OOP PHP with Assigners and … -
Replied To a Post in Using onclick to post data and test if check box is set
davidjennings maybe diafol will answer that but there are too many things that you are doing wrong in my opinion. This is a tip to check on them. Really what … -
Replied To a Post in pagination without url change
Hello, First of all you must explain what you mean with the term “tabs”. Normally we would mean by that term browser tabs , which means that you have two … -
Replied To a Post in Hello. I have a two problems with my reg sys
What exactly trubles you with the message "Cannot modify header information" ? The message is complete you have an outpout in line 229 .... What it should say more ? -
Replied To a Post in PHP defined functions
I always use PHP as an OOP language (it is a cheap language in terms of system recourses and employs salaries) . Sometimes I forget what amateur code lye underneath … -
Replied To a Post in Unable to export query result to excel, any idea how start with it please
Take a moment to read what you are asking and then read in wikipedia (or anywhere) what is html and what is excel. So the problem is producing the html … -
Replied To a Post in Create multidimensional array from array of keys and a value
Just a different approach since it is an interesting question $keys = array('key1', 'key2', 'key3'); $value = 'some value'; $md = array(); $md[$keys[count($keys)-1]] = $value; for($i=count($keys)-2; $i>-1; $i--) { $md[$keys[$i]] … -
Replied To a Post in How can do this
Start by understanding HTML 5 , than JavaScript . then jQuery and then CSS 3 ., of course then you should learn some PHP … -
Replied To a Post in Dynamically Create a Form
To be honest a “hell of a timesaver” would be also if you let your visitors alter the system tables by their selves. But you don’t want that, why ? … -
Replied To a Post in How to create web with user information like basecamp
Ok lets try tearing the problem down and solve it step by step. You said that you have created an CMS , does that mean that YOU have create the … -
Replied To a Post in How to create web with user information like basecamp
Hello vukhacbiet, You are asking something very generic without going in details on what you are trying to do ( “the same as a basecamp or teambox” you refer to … -
Replied To a Post in Big concern
> I just need to make sure the user can't really change a field with an id they shouldn't have access to. The sort answer: you have the user id … -
Replied To a Post in How to create multisite with my web app PHP
If A and B will use the same source code and database what will be the difference the view? -
Replied To a Post in Setting and resetting record priorities
To be honest I can’t get It. I am tending to believe that there should be a hidden (till now) field … lets call it for now the timestamp of … -
Replied To a Post in Best way to iterate object 'collections'
No you are not , but it has a logic behind it. When PHP (after PHP 4) passes a variable to a method , if this variable is an object … -
Replied To a Post in Best way to iterate object 'collections'
A general principle is not jumping to coclusions without reading and trying. You wrote : *“so if $foo contains objects and not simply strings, if I call a method in … -
Replied To a Post in Collecting IP Addresses
I am not sure that I got the way that you collect those IP’s . You said “email registration/email confirmation” probably that means that “confirm” an email registration by sending … -
Replied To a Post in add chat option in php websie
No it aint difficult if you know what you are asking… First of all understand what you are trying to do … and then we are here to help you -
Replied To a Post in add chat option in php websie
Of course before asking you have experimented with some technologies. What have you read and tried? … java applets ? web sockets ? .. -
Replied To a Post in Proxy Site Help
Hello, First of all let talk a bit about what is the meaning of using CURLOPT_PROXY (http://www.php.net/curl_setopt ) . The meaning is that you are going to use one other … -
Replied To a Post in porblem with mysql(insert)! I don't know what is wrong :(
The first and most serious issue is that you are not using prepared statements. The second one is that you are using a reserved word as a field named “real” … -
Replied To a Post in maintaining the order of an associative array
Hello Douglas and a happy new year, *if I create an associative array and place several key>value pairs in the array, will they remain in the order that they are … -
Created Add IPv6 nameservers in Dedicated Server and WHM
Hello, first of all let me clarify that I am just a programmer but I needed a dedicated server , with no many modification so I bought an unmanaged dedicated … -
Replied To a Post in What's the story behind your username?
When I first signed in at daniweb I worked for more than 12 hours a day (including Saturdays and Sundays) in a company taking Cobol programs and turning them to … -
Replied To a Post in The last song you heard/ listened to
The flower of winter … [Click Here](http://www.youtube.com/watch?v=WBtx1IvWbQk) No the singer hasn’t a great voice or the music isn’t too prototype or the lyrics. But that mix of sorrow, anger, sensitivity … -
Replied To a Post in Chat system
Over the past I have used two main ways (with some variations) that really worked with application that needs to know who is online. The first is quite simple … …
The End.