The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

Search results for query: *

  1. F

    eBooks with GiveAway Rights

    I have a section on my forum, which has eBooks with GiveAway Rights. That is, you can give them to others, free of charge, provided you don't alter them in any way. This license is written inside each eBook, by its author. This is specified also in the ReadMe.html file, that accompanies each...
  2. F

    I want to be your reseller

    Please reply on this thread if you sell a product (eBook or program) that meets ALL 3 conditions below: 1. You are the creator of that product or your are a proven reseller of it 2. You will allow me to resell the product on every site I want, for any price I want. If you do not want...
  3. F

    0 + 0 = 1?

    How is possible to have 20 visitors, 0 cents earnings on every channel, but 1 cent total earnings?
  4. F

    How do automated submission program work?

    I'm very curious what programs use those sites who submit your site to hundreds of "search engines". Is it possible to submit automatically one's site to Google?
  5. F

    What's in a MySQL database?

    To put it simply, a MySQL database is a collection of tables, each organized into rows and columns. That is called the logical representation of the database. The physical representation is a folder. When you create a database in MySQL, the MySQL server actually creates an empty folder...
  6. F

    How does GMT work?

    I try to set the time to GMT +2. However, it says below that all time is in GMT +3. Why?
  7. F

    include vs. include_once vs. require vs. require_once - examples

    include ('sponsor_links.php'); If the file sponsor_links is present in the current folder, it will be included ( way may want it to appear both - at the top and at the bottom). include_once ('statistics.php'); If the file statistics.php is present, it means we want statistics for the page...
  8. F

    How do I use colors?

    I don’t know how to use colors when I make a new post. I chose "Enhanced interface" in my control Panel, but I still don’t see the "color" button.
  9. F

    Div or Span?

    Span is used when you want to change the properties of an object, without affecting its position. Compare this: This is a red text inside a green text. with: This is a red text inside a green text. In the first case, we have a div inside a div. In the second case we have a span inside...
  10. F

    Class or ID?

    A div is like a blank container. To set the properties of a div, we’ll associate it a class or an id and then set the properties for that class / id. If we want to use the properties on more than one div, we’ll use classes. Otherwise, we’ll use ids. In the CSS file, class names...
  11. F

    How to test your CSS / HTML files?

    If you want to write a web page that ANY browser will understand, you have to limit yourself to text only. This can have a profound impact on the look of your pages. A better approach will be to target your page to the most used browsers on the market. You may loose some visitors (those who...
  12. F

    How to link a CSS file to a HTML file?

    We want to apply the CSS look, as defined in the example.css file, to the content from the example.htm file. In the example.htm file we add, in the header section, the following: <head> <link rel = "stylesheet" type = "text/css" href = "example.css" /> <head> While there...
  13. F

    PHP versus HTML

    Let us say you use a computer, called client, to access a web page, which is stored on another computer, called server. The client computer asks the server for a page, the servers serves the page to the client and the browser running on the client displays it to the user. While some pages...
  14. F

    The purpose of XHTML

    A HTML file should obey the rules of writing HTML files, but not always does. A XHTML file must obey the rules of writing HTML files, plus a few others. A XHTML file that obeys the above rules is called a “well-formed†XHTML file. A XHTML file that is “well-formed†and its structure...
  15. F

    What is CSS good for?

    Using HTML tables for positioning is like having a color tattoo all over your body. Using CSS for positioning is like wearing clothes. Now, what is easier if you want to change your look? To remove the tattoo and to make a new one, or to take off your clothes and replace with others? Many...
  16. F

    Practical tips about .htaccess

    After reading many .htaccess tutorials, I conclude that some very simple and useful aspects were either totally ignored or explained in way more words than necessary. I will post every tip as a separate post, as I write it. 1. How to create a filename called .htaccess in Windows? Many...
  17. F

    What tutorials would you like?

    I plan to write some tutorials for UKWebMasterWorld.com forum. Which ones would you like? The one with most votes will be written first.
  18. F

    Generate a site ready for Google's AdSense

    I wrote a script, which will transform some text files into a site: by creating an index by generating a nice and easy navigational system by adding YOUR Google AdSense code on the top and bottom of each page. The script will make you, FREE, a site that: has YOUR Google AdSense...
  19. F

    How to backup your MySQL database

    Before even starting to write your first MySQL command, it is very important to know how to backup your database. Backing databases is like teleporting: you change matter (the database) into energy (the code). The process is reversible. If you use a web hosting service, you will not...
  20. F

    Is anywhere a section dedicated to PHP?

    Is anywhere a section dedicated to PHP? Or to MySQL? If yes, I'm sorry I couldn't find it. This site is running vBulletin. Is it possible to activate the "ForumJump" shortcut?
MI
Back