Jump to content
View in the app

A better way to browse. Learn more.

The Uniform Server Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Voda

Member
  • Joined

  • Last visited

  1. According to php tutorial, once you have created a database, there are a few ways you can connect to it. To connect from a PHP script, just put this in your file: <? mysql_connect("DBSERVER", "DBUSERNAME", "DBPASSWORD"); mysql_select_db("DBNAME"); ?> using the following substitutions for the bold terms as above, plus substituting DBPASSWORD with your own mysql password: * Replace DBSERVER with the correct database servername for your site. * Replace DBUSERNAME with your own mysql username. * Replace DBNAME with your own mysql databasename. The connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function: <?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } // some code mysql_close($con); ?>

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.