Jump to content

Timp rămas până în 2025

La mulți ani tuturor!

Search the Community

Showing results for tags 'Conectare la baza de date.'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • B-Zone
    • Announcements
    • B-Zone Clips
    • Community
    • Forum Suggestions
    • Market
    • Questions and Answers
  • San Andreas Multiplayer
    • RPG.B-Zone.Ro:7777 Roleplay
    • Wiki Website
  • Rage Multiplayer
    • V.B-ZONE.RO
  • B-Zone Online
    • B-Zone Championships
    • B-Zone Clans & Clubs
    • B-Zone Radios
    • Counter-Strike 1.6
    • Discord
    • Metin2
    • Minecraft
  • IT Zone
    • Design
    • Gadgets
    • Programming
    • Software & Hardware
    • Video Games
  • Real life
    • Entertainment
    • History
    • Juridic
    • Lifestyle
    • Politics
    • Sport
    • Vehicles
  • Trash Can
  • The Last Generation [TLG]'s The Last Generation
  • Very Important Person [VIP]'s [VIP] - Topic
  • zero Limits [zL]'s Topics
  • Sons of Anarchy MC [SoA]'s Club Matters
  • Unheard Spirits [END]'s Topics
  • The First Generation [TFG]'s General
  • United Blood Nation [UBN]'s DSICUTII LIBERE MEMBRII!
  • Wild Balkans [WB]'s Informatii
  • True Silent Aimbot [TSA]'s Topics
  • Alliance [A]'s General
  • Merry Weather [MW]'s Prezenta activitati
  • Merry Weather [MW]'s Anunturi Importante
  • Merry Weather [MW]'s Giveaway
  • Merry Weather [MW]'s Giveaway
  • Dangerous Life [dL]'s General
  • Elite Squad [eS]'s Discord
  • InLineSIX [L6]'s Topicurile Clanului # Clan Topics
  • InLineSIX [L6]'s InLineSIX [L6] # Regulament / Rules
  • InLineSIX [L6]'s InLineSIX [L6] # Sistem Promovare / Rank-UP
  • Team Savants [TSV]'s Regulament
  • The Royal Family [RF]'s The Royal Family [RF]
  • Royal Shadows [RS]'s Rank up % Salarii
  • Secrets and Seekers [SS]'s Regulamen/Rules

Calendars

  • Community Calendar
  • Merry Weather [MW]'s Events

Product Groups

There are no results to display.

Categories

  • MODURI
    • CLEO/SAMPFUNCS
    • Vehicles
    • Skins
    • Sounds
    • Effects
    • Weapons
    • Others
    • Modpacks
  • True Silent Aimbot [TSA]'s Files
  • Merry Weather [MW]'s Event

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Steam ID


Discord


Instagram


Location


Hobbies


Real name


RPG Nickname

Found 1 result

  1. Pentru a realiza inregistrarea utilizatorilor, avem in primul rand nevoie de o baza de date MySQL cu o tabela pe care o vom denumi users. De asemenea, vom crea un fisier dbconnect.php ce va fi inclus atat pe pagina de inregistrare, cat si pe cea de login. In acest fisier vom introduce urmatorul script pentru conectarea la baza de date: <?php $server = "localhost"; $database = "B-Zone"; $username = "root"; $parola = ""; // conectarea la serverul MySQL $connect = mysql_connect($server,$username,$password) or die( mysql_error() ); // selecteaza baza de date test $db = mysql_select_db($database,$connect) or die( mysql_error() ); ?> Pentru acest exemplu, vom considera ca tabela users contine 4 campuri: Id (cheie primara cu atributul auto_increment), Name, Username si Password. Dupa ce ati introdus codul de mai sus in dbconnect.php va trebui sa scrieti in index.php codul de pornire a sesiunii si sa includeti fisierul de conectare: <?php session_start(); require_once("dbconnect.php"); ?> <html> script_blocat> <title>Inregistrare / Login</title> </head> </html> Unde este script_blocat este defapt head Sursa: http://www.tutorialeonline.net/ro/article/cum-ma-conectez-la-o-baza-de-date
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.