This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows; | |
namespace MySql_Inject | |
{ | |
/// <summary> | |
/// Interaction logic for MainWindow.xaml | |
/// </summary> | |
public partial class MainWindow : Window | |
{ | |
public MainWindow() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// database connection | |
$servername = "localhost"; | |
$username = "root"; | |
$password = ""; | |
$conn = new mysqli($servername, $username, $password); | |
if ($conn->connect_error) { | |
die("Connection failed:" . $conn->connect_error); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> //input/output on stream | |
#include <iomanip> //setw | |
using namespace std; //~~std::~~ | |
void star(int, int); | |
int x, start = 1; | |
int main() | |
{ | |
int i=1,k=1,z; | |
cout<<"Qing Shu Ru Yi Ge Shu Zi : "; //display message | |
cin>>x; //input message |