User Login

Help Community Login:

PHP

STaRDoGG's picture

How To Customize the Column Orders in WordPress [Code Example]

While working on one of my WordPress sites I stumbled upon the need to customize (reorder) the column order while I was adding new columns on some admin pages. Specifically in my case, the "Manage Posts" and "Manage Pages" pages. I saw people on the coding sites asking how to do it, with no one responding to them, and I was unable to really come up with a simple example by doing a little Google-Fu, so I figured it out on my own and thought I'd share.

All you really need to do is shuffle around the $defaults variable (which is an array). Here's the code:

4
I Averaged: 4 | 1 vote
Calamity Jane's picture

New iMAC, Does it Have a Built-In Web Server Like IIS Did on Windows?

I need more help with my new Mac! I used to use IIS on my Windows PC to run a photo gallery software package that I could use from anywhere, and registered a domain that I used GoDaddyGoDaddy Domain Registrar to point to my home server. I had to setup an SQL server on it, PHP, and everything, so it has it's own database and I've spend many hours adding pictures to it, tagging them, and so on, so I would like to just move this all over to my new Mac as painlessly as possibly. My question is, does a Mac have a built-in web server software like Windows had IIS? And if so, how do I use it?

4
I Averaged: 4 | 1 vote
sharkar's picture

PHP: Generate Random AlphaNumeric Password / ID

Nice little PHP function that will generate a completely random password.

/*
* The letter l (lowercase L) and the number 1 have been removed, as they can be mistaken for each other
*/
 
function createRandomPassword() {
 
$chars = "abcdefghijkmnopqrstuvwxyz023456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
 
while ($i <= 7) {
  $num = rand() % 33;
  $tmp = substr($chars, $num, 1);
  $pass = $pass . $tmp;
  $i++;
}
 
return $pass;
}
 
// Usage
$password = createRandomPassword();
echo "Your random password is: $password";
2
I Averaged: 2 | 2 votes

Who's New

jiang000 jiang000 jiang000's picture
Ash msdgroup's picture
kaden's picture
budibanyu's picture
Sadjuice's picture
Mouahd rjeb's picture
nigelbdhmp's picture
Valo's picture
beferry's picture
Mr.Bullet44's picture
XaicOaken's picture
Mike49's picture
Diablo4gold's picture
ZeonLau1's picture
ZeonLau12's picture
Syndicate content
facebook codes exploits tips tricks Phrozen Crew
All contents ©Copyright GeekDrop™ 2009-2025
TOS | Privacy Policy