How to Program a Bullet in PHP
Bullet lists in PHP display a summarized group of details or information for your website readers. You use the PHP "echo" statement to create bullet lists. You must first "echo" the "ul" tag, which...
View ArticleHow to Add & Subtract Integers in Different Columns in MySQL
The MySQL database engine includes functions that allow you to add and subtract different columns in a database table. MySQL uses the plus sign and negative sign to add and subtract integers in a list...
View ArticleHow to Find SQL Injections in WordPress
With only one small mistake in the code of a WordPress theme or plugin, a hacker can gain access to your website and deface it, steal information about your users or even delete the content from your...
View ArticleMultiple Inserts Into MySQL
You use SQL statements to manage the data in a MySQL database, including inserting new rows into the tables. The SQL insert statement indicates the name of the table you're inserting data into, the...
View ArticleHow to Configure WAMP With Eclipse IDE for PHP
WAMP is a Windows application that lets you create PHP websites with a MySQL back-end database. This setup is used on a Linux environment and an Apache Web host. WAMP lets you develop and test PHP...
View ArticleCentOS for Installing PHP With MySQL
The PHP programming language is an open source scripting language that is mainly used for Web applications. It can also be used as a command line scripting language or to create desktop applications....
View ArticleCan I Use PHP Coding With an HTML Editor Like KompoZer?
With KompoZer, you can create websites without knowing any code. Its visual interface streamlines this process. You can insert PHP into your Web pages with KompoZer. However, if you frequently use the...
View ArticleHow to Save TinyMCE Data to MySQL PHP
TinyMCE is a developer platform that helps you create Web pages. The software is especially useful if you have little programming experience, but you want to create dynamic pages. With some PHP...
View ArticleHow to Make an RSVP Button for a Facebook Event Using HTML
Facebook is a popular social networking platform that has increasingly been used to plan and manage events. It provides an “Events” feature that allows you to create and schedule an event using the...
View ArticleHow to Flush a Slow Query Log in MySQL
When it's started with the --log-slow-queries option, the MySQL slow query log stores a list of all SQL statements that took longer than a preset time to execute. This allows you to see any SQL queries...
View ArticleHow to Speed Up PHP Curl
The PHP cURL library is a set of extensions that add functionality for websites that need to connect to external sources such as other websites or other processing pages. You use the "GZIP" function to...
View ArticleTutorial for SNMP in PHP
The SNMP protocol is an older solution for remotely auditing and managing information about network resources. You can use this protocol in PHP to retrieve information about a remote resource on the...
View ArticleMySQL Integer: Signed Vs. Unsigned
The MySQL database system provides developers with a range of numerical data types to choose from, including various integer types. The range of values you can store within a database using integers...
View ArticleWhat Is the PHP Mail Character Limit?
The "mail" function is used in PHP to send email messages. While PHP does not specifically impose limits on the size of an email message, it does set a limit on the amount of memory it will allocate to...
View ArticleHow to Build an Automated Register Bot
A bot, short for robot, can perform tasks automatically in place of a human. Bots can be used, for example, to register users on websites or to respond to requests. They are often employed to log in to...
View ArticleHow to Access a Webcam in PHP
The PHP language runs on a Web server to host dynamic pages for your readers. You can use PHP to dynamically create JavaScript code that accesses a connected webcam or video. Use this type of scripting...
View ArticleHow to Enable PDO for PHP Library on Go Daddy
Go Daddy provides hosting plans on either Windows or Linux servers. The PDO extension for PHP is enabled automatically on accounts hosted on Lixux servers. If you are currently hosting your website on...
View ArticleHow to Import Connections Into MySQL Workbench
The MySQL Workbench includes a connection section you use to connect your desktop to a MySQL database. If you have connections exported to a file, import these connection settings to the Workbench....
View ArticleHow to Create a Tree Menu With PHP & MySQL
A tree menu is a visual representation of a list of items, organized so that some items or categories, called parent nodes, can be expanded and show sub-items, called child nodes. Using PHP, you can...
View ArticlePHP Mkdir Permission Does Not Work
PHP provides a function called "mkdir" that lets you create a new directory. An optional argument specifies the numeric value of the permissions to be assigned to the new directory. For example,...
View Article