First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
SEO Experts?
Hello, Do we have any SEO experts on this list? I'm not one, learning only, reading a book and a few articles/tutorials from webmasters, and I'm wanting to optimize an existing site to get the best search rank possible. Some techniques, dos and don'ts would be appreciated. Thanks. Dave. ... 7 Oct 2010 14:27
Array question
I have the following code: $query = "SELECT * FROM classics"; $result = mysql_query($query); if (!$result) die ("Database access failed: " . mysql_error()); $rows = mysql_num_rows($result); for ($j = 0 ; $j < $rows ; ++$j) { $results[] = mysql_fetch_array($result); } mysql_close($db_server); My... 26 Sep 2010 14:42
if/elseif being treated as if/if
Hey folks, Here's the deal. I have the following code: if($col_vals[$i][$val['column']] == $search_result[0][$col]) { echo ' selected="selected"'; } elseif($val['default'] == $col_vals[$i][$val['column']]) { echo ' selected="selected"'; } It's supposed to check whether there's a val... 27 Sep 2010 12:14
Heredocs, print_r() and newline "\n" and fnmatch() -curious failures ...
On 23 September 2010 21:47, YAD(YetAnotherDavid) <animaz(a)mail.com> wrote: This code is 95% cut and paste from the PHP manual examples - the Types/Strings/Heredocs section and the Filesystem/fnmatch pages. There are actually two questions here - I have combined the code into one test file ... the strings in ... 24 Sep 2010 14:15
Heredocs, print_r() and newline "\n" and fnmatch() - curious failures...
This code is 95% cut and paste from the PHP manual examples - the Types/Strings/Heredocs section and the Filesystem/fnmatch pages. There are actually two questions here - I have combined the code into one test file ... the strings in the code contain the questions .. at the end I have inserted the output I get fro... 24 Sep 2010 08:52
module add on Suse 10.3
Hi everybody, I am using Open 10.3 with KDE 3.5.10 on an x86_64 system. I want to use the function "http_post_data()" from module "pecl_http" (in a script called from shell, which could be an important detail...). And did not succed! Is Open Suse repertories organised such a way that stand... 23 Sep 2010 22:05
Copying an Object
Hello PHPers, I have: class A { ...code } class B extends A { ...code } $a = new A(); $b = new B(); I would like to get all of the properties of $a into $b by value. Class A extends 3 other classes. I would like a way to not have to manage a 'copy' method in B if A or one of the subclasses o... 25 Sep 2010 11:47
ZipArchive, but without files
Is it possible to create a ZipArchive to a non-file storage, eg string? I want to create a small zip of some data, and then load it into a database. I don't need the intermediate file. I tried various filters, and I can READ a zip archive with the "data://" wrapper, but haven't found any way of creating the d... 23 Sep 2010 16:40
Database Administration
Hi I need to build a custom client management app, which will build and manage a database per client. This means that on top of the usual sql crud, it needs to be able to create databases, add/edit/delete database users, create tables. Is there a way for me to do this nicely as PHP solution? am I better off i... 30 Sep 2010 15:36
not able to connect to MySQL
I have defined (just for testing) a user in my SQL named "pubuser" and granted it access to a database "publications." Of course I also created the database and two tables. I can access and manipulate the tables via phpMyAdmin and I can log in to sql using pubuser via the command-line interface. I have the ... 20 Sep 2010 20:20
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16