Skip to content

PHPCodez

Search
  • PHP
  • Magento
  • Javascript
  • HTML
  • My SQL
  • Functions
  • WordPress
  • Plugins
  • Joomla
  • Linux
  • jQuery
  • Profile
  • comments

Monthly Archives: April 2011

Linux, My SQL

MySQL command to modify password – Linux

April 30, 2011 Pramod T P Leave a comment
mysqladmin -u root -p password Newspassword
LinuxMySQL
Linux, My SQL

MySQL command to show list of tables – Linux

April 30, 2011 Pramod T P Leave a comment
show tables;
LinuxMySQL
Linux, My SQL

MySQL command to show list of databases – Linux

April 30, 2011 Pramod T P Leave a comment
show databases;
LinuxMySQL
My SQL

How to connect to MySQL Database server using command line

April 30, 2011 Pramod T P Leave a comment
mysql -h localhost -u root -ppassword
LinuxMySQL
Joomla

Load tinymce editor on client side – Joomla

April 28, 2011 Pramod T P Leave a comment
 <?php
  $editor =& JFactory::getEditor();
  echo $editor->display( 'story', $story , '600', '300', '5', '2' );
 ?>
JoomlaPHP
Joomla

How to get prefix of tables in Joomla site

April 28, 2011 Pramod T P Leave a comment
<?php
 $dVar=new JConfig();
 echo $dVar->dbprefix //jos_
?>
JoomlaPHP
Joomla

How to check whether the user is logged in or not – Joomla

April 28, 2011 Pramod T P Leave a comment
<?php
 $user = & JFactory::getUser();
 if($user_id=$user_id=$user->get('id'))
 	echo "Logged in user"
?>
JoomlaPHP
Joomla

Find out the user id of the logged in user – Joomla

April 28, 2011 Pramod T P Leave a comment
<?php
 $user = & JFactory::getUser();
 echo $user_id=$user_id=$user->get('id');
?>
JoomlaPHP
PHP

How to decode the data – PHP

April 28, 2011 Pramod T P Leave a comment
<?php
  $enData	=base64_encode("First");
  echo base64_decode($enData);//First
?>
PHP
PHP

How to encode the data – PHP

April 28, 2011 Pramod T P Leave a comment
<?php
  echo base64_encode("First");
?>
FunctionsPHP

Posts navigation

← Previous 1 2 3 4 … 11 Next →

Beginners' Guide

Recent Posts

  • Upstream sent too big header while reading response
  • Navigate to a Folder from Any Location by Typing a Letter – Linux
  • Magento 2 Admin Content Deployment
  • React vs next JS
  • Disable CAPTCHA Magento 2 Admin Login
  • Difference Between composer.json and composer.lock Files
  • Magento 2 Regenerate URL Rewrites Manually For Categories
  • Magento 2 Regenerate URL Rewrites Manually for Products
  • composer self downgrade

Recent Comments

  • sunny on cgi.force_redirect
  • beats solo 4 on allow_url_include
  • Hairstyles on php end of line
  • penipu on cgi.force_redirect
  • lumi777 link alternatif on cgi.force_redirect

Categories

  • .htaccess (32)
  • Ajax (4)
  • Apache (43)
  • AWS (11)
  • Cookie (4)
  • Database Model (9)
  • Design Pattern (9)
  • Filter (27)
  • General (187)
  • HTML (5)
  • IP.Board (1)
  • Javascript (99)
  • Jetty (3)
  • Joomla (17)
  • jQuery (63)
  • JSON (3)
  • JSP (1)
  • Linux (125)
  • Magento (371)
  • My SQL (74)
  • nginx (4)
  • OOPs (12)
  • Payment Gateway (1)
  • PHP (1,005)
  • Plugins (11)
  • Prototype (1)
  • session (5)
  • Socialengine (1)
  • SQL (69)
  • SVN (17)
  • Uncategorized (11)
  • Vbulletin (11)
  • Wordpress (89)
Proudly powered by WordPress