The horror of programming: Difference between revisions
Ossip Groth (talk | contribs) (Created page with "* my medline program runs with some idiosyncrasms, so this document is important for [https://learn.microsoft.com/de-de/troubleshoot/developer/webapps/iis/health-diagnostic-performance/http-error-500-19-webpage 500.19 iis errors]. . * have to learn mysquli for own mysql databases -living in php5 world- and landing in 8. * have to clean up coviki.og covid collection bc wiki ran in open mode for a few days seo me.") |
Ossip Groth (talk | contribs) mNo edit summary |
||
| Line 4: | Line 4: | ||
* have to clean up coviki.og covid collection bc wiki ran in open mode for a few days seo me. | * have to clean up coviki.og covid collection bc wiki ran in open mode for a few days seo me. | ||
* php8 Warning: Undefined array key - Best way to handle Undefined array key in PHP 8.0 - to transmit the link variables here i made a function for bla.com/bla.php?px=wert into $px2 ! reuse variables like trash ! | |||
$px2=gettr("px2"); | |||
function gettr($gtr){ | |||
if (array_key_exists($gtr, $_GET)) { | |||
$gtr = $_GET[$gtr];} | |||
return $gtr;} | |||
Revision as of 03:39, 31 January 2024
- my medline program runs with some idiosyncrasms, so this document is important for 500.19 iis errors. .
- have to learn mysquli for own mysql databases -living in php5 world- and landing in 8.
- have to clean up coviki.og covid collection bc wiki ran in open mode for a few days seo me.
- php8 Warning: Undefined array key - Best way to handle Undefined array key in PHP 8.0 - to transmit the link variables here i made a function for bla.com/bla.php?px=wert into $px2 ! reuse variables like trash !
$px2=gettr("px2");
function gettr($gtr){
if (array_key_exists($gtr, $_GET)) {
$gtr = $_GET[$gtr];}
return $gtr;}