commit existing workshops
This commit is contained in:
8
workshop3/.idea/.gitignore
generated
vendored
8
workshop3/.idea/.gitignore
generated
vendored
@@ -1,8 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
8
workshop3/.idea/modules.xml
generated
8
workshop3/.idea/modules.xml
generated
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/workshop3.iml" filepath="$PROJECT_DIR$/.idea/workshop3.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
20
workshop3/.idea/php.xml
generated
20
workshop3/.idea/php.xml
generated
@@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="MessDetectorOptionsConfiguration">
|
||||
<option name="transferred" value="true" />
|
||||
</component>
|
||||
<component name="PHPCSFixerOptionsConfiguration">
|
||||
<option name="transferred" value="true" />
|
||||
</component>
|
||||
<component name="PHPCodeSnifferOptionsConfiguration">
|
||||
<option name="highlightLevel" value="WARNING" />
|
||||
<option name="transferred" value="true" />
|
||||
</component>
|
||||
<component name="PhpProjectSharedConfiguration" php_language_level="8.3" />
|
||||
<component name="PhpStanOptionsConfiguration">
|
||||
<option name="transferred" value="true" />
|
||||
</component>
|
||||
<component name="PsalmOptionsConfiguration">
|
||||
<option name="transferred" value="true" />
|
||||
</component>
|
||||
</project>
|
6
workshop3/.idea/vcs.xml
generated
6
workshop3/.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/../../.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
8
workshop3/.idea/workshop3.iml
generated
8
workshop3/.idea/workshop3.iml
generated
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
0
workshop3/emoji.php → workshop3/Emoji/index.php
Normal file → Executable file
0
workshop3/emoji.php → workshop3/Emoji/index.php
Normal file → Executable file
0
workshop3/operators.php → workshop3/Operators/index.php
Normal file → Executable file
0
workshop3/operators.php → workshop3/Operators/index.php
Normal file → Executable file
5
workshop3/strings.php → workshop3/Strings/index.php
Normal file → Executable file
5
workshop3/strings.php → workshop3/Strings/index.php
Normal file → Executable file
@@ -1,4 +1,4 @@
|
||||
<html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Train Listings</title>
|
||||
</head>
|
||||
@@ -9,7 +9,8 @@
|
||||
<th>Price</th>
|
||||
</tr>
|
||||
<?php
|
||||
$url = "http://www.classifiedsteam.co.uk/index.php?page=search&sCategory=10";
|
||||
#error_reporting(0);
|
||||
$url = "https://www.classifiedsteam.co.uk/index.php?page=search&sCategory=10";
|
||||
$string = file_get_contents($url);
|
||||
$dom = new DOMDocument();
|
||||
$dom->loadHTML($string);
|
Reference in New Issue
Block a user