The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  Direct Affiliate

Search results for query: *

  1. G

    Query Optimization

    Hi, This is my first article and so please provide comments on it (good or bad). The design of the database is one of the most important factors in the performance of the database and with a good database design you also need optimal queries to perform optimally. Everyone wants the performance...
  2. G

    OOPS - MySQL

    Hello, Hey guys, I am looking for help with my OOPS code for connecting to MySQL, just for people that don't know what OOPS is Object Oriented Programming. I am trying to connect to my database (MSQL) using this technology, however all my coding just does not seem to be working The first code...
  3. G

    Searching Database Using Like

    Hi, I am trying to query my database for specific words in variables. I have one database titled pranks with a column called prankentry and tags Another database holds an ID number and an entrytext column. I pass the ID number through the URL to /pranks/index.php?id=26. On index.php i am...
  4. G

    PHP loop through database and limit number of entries

    Hello, Going to try to explain this as best I can. I have a bunch of stuff in a database and I need to display this info within a table. This isn't a problem at all but, I need it to only display 3 td tags per line and then move on to the row. so i need it to do : code: <table> <tr> <td>My...
  5. G

    Creating a file upload form with PHP

    Hi, Now we can create our upload.php file. To start we'll check that the file upload is safe by setting a list of allowed filetypes and disallowing all other file uploads. This will prevent people from uploading malicious files. Then we will check the filesize to prevent large files from being...
  6. G

    How do I install Curl?

    Hello, cURL and libcurl wget http://curl.haxx.se/download/curl-7.16.0.tar.gz tar -pxzf curl-7.16.0.tar.gz cd curl-7.16.0 ./configure --with-ssl make make install ldconfig -v Then use --with-curl in PHP's configure For use with Perl use libcurl - the Perl Binding wget...
  7. G

    How to install PHP on Apache?

    Hi, You need to add the following lines to httpd.conf (If you're using Apache for Win32) ScriptAlias /php/" c:/path-to-php-dir/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php.exe" Then restart Apache and it should interpret php files correctly. For more...
  8. G

    PHP/MySQL problem

    Hi I have just had a site transferred to me that has [Removed false authorship of website: this is a joke I assume, no such authorship exists in the real world, techAdmin] - and I cannot, for the life of me, understand why it will not properly connect to the MySQL database. I have done many...
  9. G

    Html INTRODUCTION

    Hello, Webpages are written in HTML - a simple scripting language. HTML is short for HyperText Markup Language. * Hypertext is simply a piece of text that works as a link. * Markup Language is a way of writing layout information within documents. Basically an HTML document is a...
  10. G

    Adding interest to your pages with images

    Hi, Images can be used to make your Web pages distinctive and greatly help to get your message across. The simple way to add an image is using the <img> tag. Let's assume you have an image file called "peter.jpg" in the same folder/directory as your HTML file. It is 200 pixels wide by 150 pixels...
  11. G

    Add headings and paragraphs

    Hi, If you have used Microsoft Word, you will be familiar with the built in styles for headings of differing importance. In HTML there are six levels of headings. H1 is the most important, H2 is slightly less important, and so on down to H6, the least important. Here is how to add an important...
  12. G

    Start with a title

    Hello, Every HTML document needs a title. Here is what you need to type: <title>My first HTML document</title> Change the text from "My first HTML document" to suit your own needs. The title text is preceded by the start tag <title> and ends with the matching end tag </title>. The...
  13. G

    Getting started with HTML

    Hi, This is a short introduction to writing HTML. What is HTML? It is a special kind of text document that is used by Web browsers to present text and graphics. The text includes markup tags such as <p> to indicate the start of a paragraph, and </p> to indicate the end of a paragraph. HTML...
  14. G

    MySQL Dump

    Hello, A MySQL dump is a bit slower than a raw backup because it creates all the SQL queries required to create the tables of that database, as well as all the insert queries required to place the information back into the database's tables. If you want to perform the mysql dump manually...
  15. G

    Removing Indexes

    Hi, Beside creating index you can also removing index by using DROP INDEX statement in MySQL. Interestingly, DROP INDEX statement is also mapped to ALTER TABLE statement. Here is the syntax: DROP INDEX index_name ON table_name
  16. G

    what is php ?

    Hi, PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. When http request arrive to your...
  17. G

    change timezones in php

    Hi, PHP scripting language have an built in function to change between the timezones , you will need the PEAR package . In the following example show you how to convert from GMT system format to IST Format . <?php // include class include ("Date.php"); // initialize object $d = new...
  18. G

    PHP loop through database and limit number of entries

    Hi, Going to try to explain this as best I can. I have a bunch of stuff in a database and I need to display this info within a table. This isn't a problem at all but, I need it to only display 3 td tags per line and then move on to the row. so i need it to do : code: <table> <tr> <td>My First...
  19. G

    Creating Indexes

    Hello, Database indexes help to speed the retrieval of data from MySQL database server faster. When retrieving the data, MySQL first check whether the indexes exists; If yes it will use index to select exact physical corresponding rows without scanning the whole table. In general, it is...
  20. G

    Insert Multiple Rows Into A Mysql Table Using Php Array

    Hello, I have a form that asks the applicant for previous involvement. They have the option of entering up to three rows and after they press submit the computer needs to enter possible multiple rows. Here is my form code: <form action="insert1.php" method="post"> <table width="77%"> <td...
banners
Back