Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~322 People Reached
Favorite Forums
Favorite Tags
php x 3
Member Avatar for gmaster1440

I've noticed some web pages are accessed by associating numbers next to the 'www' part of the url. For example: [code]http://www38.wolframalpha.com/input/?i=1%2B1[/code] What does this mean? How would I be able to configure that for some of my own sites? Is it DNS side? Thanks

Member Avatar for gmaster1440
0
90
Member Avatar for gmaster1440

Code: [CODE]<?php define( "DATABASE_SERVER", "blah" ); define( "DATABASE_USERNAME", "blah" ); define( "DATABASE_PASSWORD", "blah" ); define( "DATABASE_NAME", "blah" ); //connect to the database $mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD) or die(mysql_error()); mysql_select_db( DATABASE_NAME ); $sql = 'SELECT * FROM `users`'; $result = mysql_query($sql) or die ('Error: '.mysql_error ()); while($row = mysql_fetch_array($result)) { …

Member Avatar for somedude3488
0
232