I am using PhpStorm to edit html and php. Great editor but I can't find useful features:
Or there is no ways to do that?
To insert new row to HTML table write
<tr><td></td>...<td></td></tr>
To delete row, select all code between matching <tr> and </tr> (including these tags), find delete button and press to delete selected text.
<tr>
</tr>
You can ALT + CLICK to place multiple markers. CTRL + D will copy same line to below. You can use CTRL + F to replace text using RegExp.
Other than that, use PHP to generate table in loop instead of manual writing.
You Will ALWAYS have to deal with code manipulation by hand
Copyright © 2021 Jogjafile Inc.
To insert new row to HTML table write
To delete row, select all code between matching
<tr>
and</tr>
(including these tags), find delete button and press to delete selected text.You can ALT + CLICK to place multiple markers.
CTRL + D will copy same line to below.
You can use CTRL + F to replace text using RegExp.
Other than that, use PHP to generate table in loop instead of manual writing.
You Will ALWAYS have to deal with code manipulation by hand