<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Treep</title>
    <description>The latest articles on DEV Community by Treep (@treep).</description>
    <link>https://dev.to/treep</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1127429%2F7b12559d-96b8-4f2b-9344-8b84d4113bc8.jpeg</url>
      <title>DEV Community: Treep</title>
      <link>https://dev.to/treep</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/treep"/>
    <language>en</language>
    <item>
      <title>Study Note | SQL Injection</title>
      <dc:creator>Treep</dc:creator>
      <pubDate>Mon, 27 Nov 2023 14:44:09 +0000</pubDate>
      <link>https://dev.to/treep/study-note-sql-injection-7a1</link>
      <guid>https://dev.to/treep/study-note-sql-injection-7a1</guid>
      <description>&lt;h2&gt;
  
  
  Wide Byte Injection
&lt;/h2&gt;

&lt;p&gt;For some wide byte charset, such as GBK and GB2312, special character (the character expect English letter) will be 2 bytes. So, we could prevent the quotation mark (') from being escaped by adding &lt;code&gt;%df&lt;/code&gt; to make the slash used to escape single quotation mark be regarded as a special character through combining with &lt;code&gt;%df&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;For instance, we have a original string &lt;code&gt;admin'&lt;/code&gt; , after processing by &lt;code&gt;addslashes()&lt;/code&gt; in PHP, it will be &lt;code&gt;admin\'&lt;/code&gt; now. So, we can transform the original string to &lt;code&gt;admin%df'&lt;/code&gt; , it will be escaped as &lt;code&gt;admin%df\'&lt;/code&gt; , then the &lt;code&gt;%df&lt;/code&gt; and &lt;code&gt;\&lt;/code&gt; will be combined to a wide byte. So, we have a single quotation that is not escaped now.&lt;/p&gt;

&lt;h2&gt;
  
  
  Error Injection
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Description
&lt;/h3&gt;

&lt;p&gt;Use &lt;code&gt;EXTRACTVALUE&lt;/code&gt; method to get sensitive information of target database. For the principle, &lt;code&gt;EXTRACTVALUE(xml_code_or_file, xpath)&lt;/code&gt; will display result of &lt;code&gt;xpath&lt;/code&gt; parameter if the grammar of XPath is invalid. So, you could use the symbol that will cause wrong grammar in XPath, such as symbol &lt;code&gt;~&lt;/code&gt; or &lt;code&gt;0x7e&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Common Usage
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;View name of database: &lt;code&gt;SELECT EXTRACTVALUE(1, CONCAT(0x7e, (SELECT DATABASE())))&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View names of tables: &lt;code&gt;SELECT EXTRACTVALUE(1, CONCAT(0x7e, (SELECT GROUP_CONCAT(table_name) FROM information_schema.tables WHERE table_schema=DATABASE())))&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View names of columns: &lt;code&gt;SELECT EXTRACTVALUE(1, CONCAT(0x7e, (SELECT GROUP_CONCAT(column_name) FROM information_schema.columns WHERE table_name="table_name")))&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View data of table: &lt;code&gt;SELECT ECTRACTVALUE(1, CONCAT(0x7e, (SELECT GROUP_CONCAT(column_name) FROM table_name)))&lt;/code&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Attention
&lt;/h3&gt;

&lt;p&gt;The maximum length of &lt;code&gt;EXTRACTVALUE&lt;/code&gt; 's result is 32, &lt;code&gt;SUBSTR()&lt;/code&gt; or &lt;code&gt;LIMIT&lt;/code&gt; should be used when the length is greater than 32.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>sql</category>
    </item>
    <item>
      <title>Convert PHP Project to Android App</title>
      <dc:creator>Treep</dc:creator>
      <pubDate>Thu, 27 Jul 2023 07:09:21 +0000</pubDate>
      <link>https://dev.to/treep/convert-php-project-to-android-app-56fb</link>
      <guid>https://dev.to/treep/convert-php-project-to-android-app-56fb</guid>
      <description>&lt;h2&gt;
  
  
  Before Beginning
&lt;/h2&gt;

&lt;p&gt;PHP is an excellent choice for beginners to learn about development of Web App. For a PHP learner, if you want to share your works to others, making it to an Android App is a best choice without establishing a website. Don't worry about matters, what we need is just a mobile phone! &lt;/p&gt;

&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.venter.hopweb" rel="noopener noreferrer"&gt;HopWeb&lt;/a&gt; App can just make an Android App from a PHP project. &lt;/p&gt;

&lt;h2&gt;
  
  
  Content
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Preparations&lt;/li&gt;
&lt;li&gt;Preview Project&lt;/li&gt;
&lt;li&gt;Customize Your App&lt;/li&gt;
&lt;li&gt;Install &amp;amp; Share Your App&lt;/li&gt;
&lt;li&gt;FAQ&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Preparations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;HopWeb (Version 2.7.0 or above, download via &lt;a href="https://play.google.com/store/apps/details?id=com.venter.hopweb" rel="noopener noreferrer"&gt;Google Play&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;An Android phone with Android 8.0 and above. (64-bit ARM CPU is also necessary.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Create or Import A PHP project on HopWeb
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Open HopWeb, create a PHP project by pressing &lt;strong&gt;[Create Project]&lt;/strong&gt; button. And then check "PHP Template".&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi7nrd2hfnmgfzpi674r1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi7nrd2hfnmgfzpi674r1.jpg" alt="The dialog of creating project"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;If you want to import an existing PHP project, you can press &lt;strong&gt;[IMPORT PROJECT]&lt;/strong&gt; button on "Create Project" dialog, and then choose the ZIP file of your project.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Furthermore, you could download a project that is shared by others on &lt;strong&gt;ideaSky&lt;/strong&gt;. As a demonstration, I downloaded the resource named &lt;strong&gt;"Simple User System"&lt;/strong&gt;. You can find it by searching RID: IDEA-10002.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0i9kol7qhywkcatdp1br.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0i9kol7qhywkcatdp1br.jpg" alt="Find a resource on ideaSky"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzst9v5i8mywkzkt708e5.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzst9v5i8mywkzkt708e5.jpg" alt="The detail page of ideaSky"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go back Home after downloading, and you can see the project. Just open it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Preview Project
&lt;/h2&gt;

&lt;p&gt;HopWeb has a built-in &lt;strong&gt;PHP environment&lt;/strong&gt;, so that you can preview the PHP project directly through HopWeb.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Touch the "≡" icon in the left to open project manager.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3wm5dr5obit9mpdzhs5y.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3wm5dr5obit9mpdzhs5y.jpg" alt="The page of project editing"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click &lt;code&gt;index.html&lt;/code&gt; or &lt;code&gt;index.php&lt;/code&gt; to open the file and preview it by the &lt;strong&gt;green triangle icon&lt;/strong&gt; in the bottom right corner.&lt;/li&gt;
&lt;li&gt;Let's register an account, and log in then.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhgzqhssoq6o2bunvlqnq.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhgzqhssoq6o2bunvlqnq.jpg" alt="Register"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjhkzysdyyfmledgui1d4.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjhkzysdyyfmledgui1d4.jpg" alt="Log in"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can find the registered accounts information in the &lt;code&gt;data&lt;/code&gt; folder. Clear the content of file &lt;code&gt;users.json&lt;/code&gt; to delete registered accounts.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fss71msuyoc0r7lfl2oy7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fss71msuyoc0r7lfl2oy7.jpg" alt="Project manager"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwgpkfjtl86rot15xr7d4.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwgpkfjtl86rot15xr7d4.jpg" alt="Data file editing"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Customize Your App
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;If you want to use a different icon rather than the default, you need to &lt;strong&gt;import&lt;/strong&gt; the icon image file to the project first.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Click &lt;strong&gt;[Import]&lt;/strong&gt;-&lt;strong&gt;[Import Media File]&lt;/strong&gt;, and choose an image file you like. You can see the image file you imported in the file list after importing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frxpgeyprbn5z11ckafjv.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frxpgeyprbn5z11ckafjv.jpg" alt="Imported file"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click &lt;strong&gt;[Publish Your Website]&lt;/strong&gt;, and click &lt;strong&gt;[Convert to Android App]&lt;/strong&gt; then.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6zcc3e0u4v9ub04kkqfr.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6zcc3e0u4v9ub04kkqfr.jpg" alt="Publish dialog"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click &lt;strong&gt;[Application Icon]&lt;/strong&gt; and choose the image file we've just imported.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fquqhvptjlve57xlb0qm3.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fquqhvptjlve57xlb0qm3.jpg" alt="Modify App icon"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Modify other information of the App to your liking. &lt;strong&gt;Don't forget to check [Carry PHP Environment].&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzn1mrcten95cbupk8jmf.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzn1mrcten95cbupk8jmf.jpg" alt="Modify other information"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;After customizing, press &lt;strong&gt;the OK icon&lt;/strong&gt; at the bottom of the page to produce the APK installer file. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz6kwl9wta5i48q8fu1jt.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz6kwl9wta5i48q8fu1jt.jpg" alt="PHP prompt"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuohztt63rdejs6vo70bx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuohztt63rdejs6vo70bx.jpg" alt="Conversion finished"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Install &amp;amp; Share Your App
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;After conversion, go back to &lt;strong&gt;the project manager&lt;/strong&gt;, and refresh the file list by swiping it down. You can see the produced APK file.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbyky4yzivm6uopwz72ih.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbyky4yzivm6uopwz72ih.jpg" alt="The APK file in file list"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You could open the system file manager App and locate into "Internal storage -&amp;gt; Venter -&amp;gt; HopWeb -&amp;gt; Simple User System", and you will see the APK file. Install by clicking on it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4gmcode72w932em4e6ri.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4gmcode72w932em4e6ri.jpg" alt="The APK file in file manager App"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2m8u93uuenzz5bcd2g4n.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2m8u93uuenzz5bcd2g4n.jpg" alt="Install your App"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open your App, and the webpage has become a client application. The PHP code can also run as normal.
&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsdus89azqvwwl7erep6z.jpg" alt="App screenshot 1"&gt;
&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2u6u8rgctstc5t12q9yc.jpg" alt="App screenshot 2"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;There is an error when open the produced App: The port of PHP environment may be incorrect. You can modify the port in the &lt;strong&gt;Convert to Android App&lt;/strong&gt; page. The range of ports is 1024 ~ 65535. Common ports like 8080 are not recommended.&lt;/li&gt;
&lt;li&gt;The PHP project used MySQL: HopWeb will support database server like MySQL in the future version, but not currently supported.&lt;/li&gt;
&lt;li&gt;Incompatible PHP version: The PHP version of HopWeb 2.7.0 is 8.2.8. If your PHP project uses some syntactic features of PHP 7, there may be some problems.&lt;/li&gt;
&lt;li&gt;System requirement of produced App: Require Android 6.0 and above systems. The architecture of CPU must be ARM 64.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>mobile</category>
      <category>php</category>
      <category>webdev</category>
      <category>android</category>
    </item>
  </channel>
</rss>
