Skip to content

Commit bb586e9

Browse files
committed
Update 4
1 parent 38c9d67 commit bb586e9

10 files changed

+5
-47
lines changed

Connection.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
5-
6-
<?PHP
1+
<?php
72
$hostname='localhost'; //Nome do Servidor
83
$username='root'; //Nome do Usuario do servidor
94
$pass=''; //Senha do servidor

CreateNewProblem.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);

CreateNewProblemMysqlConnection.php

-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);
@@ -27,8 +23,6 @@
2723
$source=$_POST ['source'];
2824
$uploader=$_POST ['uploader'];
2925

30-
$source = preg_replace("\n", "\\n", '$source');
31-
echo $source;
3226
Require ('Connection.php');
3327
$sqlinsert ="insert into exercicio values ('$id','$name','$class','$description','$type','$level2pc','$level','0','$Observation','$source','$uploader')";
3428

EditProblemInfo.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);

EditProblemMysqlConnection.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<html>
62
<head>
73
<meta charset="utf-8">

EditUserProfileMysqlConnection.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2021
4-
-->
51
<html>
62
<head>
73
<meta charset="utf-8">

MainInformationPage.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);

ShowProblemsInfo.php

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);
@@ -81,7 +77,8 @@
8177
?>
8278
</h4>
8379

84-
<div style="background: #ffffff; overflow:auto;height:68%;width:auto;border:solid blue;border-width:.1em .8em .1em .8em;padding:.2em .6em;"><pre style=" border:2px solid white; margin: 0; line-height: 125%; background-color: white; color: black";>
80+
<div style="background: #ffffff; overflow:auto;height:68%;width:auto;border:solid blue;border-width:.1em .8em .1em .8em;padding:.2em .6em;">
81+
<textarea readonly style="border: none;outline: none;width: 100%;height: 100%;resize:none;">
8582
<?php
8683
require('Connection.php');
8784

@@ -92,7 +89,7 @@
9289
printf("%s", $texto);
9390
mysqli_free_result($result);
9491
?>
95-
<br>
96-
</pre></div>
92+
</textarea>
93+
</div>
9794
</body>
9895
</html>

UserProfile.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<?php
62
ini_set('display_errors', 0 );
73
error_reporting(0);

index.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
Desenvolvido por https://github.com/AlexandroLuis
3-
Versão 1.0 - 2020
4-
-->
51
<html>
62
<head>
73
<meta charset="utf-8">

0 commit comments

Comments
 (0)