- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
The domain .co.cc is not an official TLD, however some sites (via [url]http://www.google.com.au/search?q=%22co.cc%22&num=20[/url]) have a PageRank between 2 and 4.
[QUOTE=srpa01red;841204]actually dis is the max_data length shown using "show table status" 281474976710655. means data size is shown in kb or mb.[/QUOTE] I thought Max_data_length was in bytes, but I could be wrong. Also the maximum size of a table is usually determined by the operating system and not MySQL itself, …
[QUOTE=vict0rjr;841035]/** i get these errors : ... File: D:\Series\drjava\bookClasses\Picture.java [line: 188] Error: D:\Series\drjava\bookClasses\Picture.java:188: cannot find symbol symbol : class Scanner location: class Picture File: D:\Series\drjava\bookClasses\Picture.java [line: 188] Error: D:\Series\drjava\bookClasses\Picture.java:188: cannot find symbol symbol : class Scanner location: class Picture[/QUOTE] In the class [I]Picture[/I] do you import the class Scanner using …
[QUOTE=Acedia;841015]I'm bored, if there's any socket programming that someone needs post a comment, and I'll see what i can come up with. :)[/QUOTE] You should write a tutorial and post it here on the forum, everybody loves tutorials. :)
[QUOTE=dhr;840971]Hi, I am attempting to write a query to return whether or not a particular items value entered is the lowest value and also unique. For example, if an item as 6 values against it e.g. user_id item_id value 1 101 3 2 101 3 2 101 4 3 101 …
Do you have the [I]href[/I] element in double quotes, such as <a href="http://www.google.com/">Google</a>, also spaces in the address should be escaped using %20
[QUOTE=cutieams;841180]i am new to php..can anyone help me with the basics of PHP. i mean after installing php,how do i save my first PHP file. i mean saving that file as .php i know ..but in which folder should i save it and after saving how do i run myprogram. …
Hi guys, Just a question I think many people like myself would like to know the answer to. I have been using the Graphics2D class and it works great, however now I want to do some 3D things. I would like to know how to place ellipsoids in 3D space, …
You can choose how it will tile with CSS, see [url]http://www.w3schools.com/css/pr_background-repeat.asp[/url] You can restrict it to tiling horizontally, or vertically or turn use "no-repeat" hope that helps :)
Also may want to point out that some shared web host environments disable the [I]mail[/I] function in PHP. :)
Would something like this SQL query do the job? SELECT [I]table1.field1[/I], [I]table1.field2[/I], [I]table2.field1[/I] FROM [I]table1[/I], [I]table2[/I]; I am pretty sure it doesn't need a common key as I am doing a Cartesian product.
[QUOTE=srpa01red;840395]i want to insert dummy data for testing my database.so i want to execute a single insert statement 1000 times. is there any function to do so or is there any script todo. if so plz help me[/QUOTE] With PHP you can create a loop [code]<?php //connect to database first …
Writing a web browser from scratch is certainly a huge job. Not only do you need to parse HTML, but you need translate languages (such as javascript) into instructions which your web browser can read. Furthermore you need to be able to render the page quickly, using various algorithms. The …
The End.