<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://biggi.dk/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://biggi.dk/dokuwiki/feed.php">
        <title>BiggiWiki - php</title>
        <description></description>
        <link>https://biggi.dk/dokuwiki/</link>
        <image rdf:resource="https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg" />
       <dc:date>2026-04-19T15:29:30+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/php/charset_converter?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/php/imageproxy?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/php/secit?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/php/speed_limit_downloader?rev=1439672202&amp;do=diff"/>
                <rdf:li rdf:resource="https://biggi.dk/dokuwiki/doku.php/php/sqldo?rev=1439672202&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg">
        <title>BiggiWiki</title>
        <link>https://biggi.dk/dokuwiki/</link>
        <url>https://biggi.dk/dokuwiki/lib/exe/fetch.php/wiki/dokuwiki.svg</url>
    </image>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/php/charset_converter?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>charset_converter</title>
        <link>https://biggi.dk/dokuwiki/doku.php/php/charset_converter?rev=1439672202&amp;do=diff</link>
        <description>This is a very specific charset converter, but you should be able to rewrite the code to fit your own needs. It's meant to convert an XML file from UTF-8 to ISO-8859-1, nothing else (well maybe the other way around too, I made support for that anyway).</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/php/imageproxy?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>imageproxy</title>
        <link>https://biggi.dk/dokuwiki/doku.php/php/imageproxy?rev=1439672202&amp;do=diff</link>
        <description>I like PHP. It might not be as speedy as java, C, C++ etc, but it gets the job done (most of the time).
I ran a website with a forum, and as we moved to HTTPS only, when people linked to external images they got a warning saying that some content was non-encrypted. I thought about it for a while, and decided to write an</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/php/secit?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>secit</title>
        <link>https://biggi.dk/dokuwiki/doku.php/php/secit?rev=1439672202&amp;do=diff</link>
        <description>/* Function for XSS/SQL/? escaping */
function secit($string, $clean = &quot;&quot;) {
// HTML/XSS escape
        $out = $string;
        $escaped = 0;

        if ($clean == &quot;full&quot; || $clean == &quot;html&quot;) {
                $out = htmlspecialchars($out);
                $escaped = 1;
        }
// SQL escape
        if ($clean == &quot;full&quot; || $clean == &quot;sql&quot;) {
                $out = mysql_real_escape_string($out);
                $escaped = 1;
        }

// Return the string. Output error if the string was not …</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/php/speed_limit_downloader?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>speed_limit_downloader</title>
        <link>https://biggi.dk/dokuwiki/doku.php/php/speed_limit_downloader?rev=1439672202&amp;do=diff</link>
        <description>We needed to download some large files in the middle of the day at my workplace with a limited connection (12mbit), and didn't want to disturb business data. Also we didn't want to pay for a fancy Windows client to limit the speed of the downloads, so I wrote a quick PHP script that can do it for us.</description>
    </item>
    <item rdf:about="https://biggi.dk/dokuwiki/doku.php/php/sqldo?rev=1439672202&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-15T20:56:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sqldo</title>
        <link>https://biggi.dk/dokuwiki/doku.php/php/sqldo?rev=1439672202&amp;do=diff</link>
        <description>function sqldo($query, $howparse = &quot;&quot;, $querydb = &quot;&quot;) {
// DB change for the query?
        if (!empty($querydb)) {
                $retvar = mysql_db_query($querydb, $query) or die(&quot;x203 - &quot;.mysql_error());
        } else {
// Otherwise just do the query
                $retvar = mysql_query($query) or die(&quot;x203 - &quot;.mysql_error());
        } 

// Parse the query as requested (if requested :P)
        if ($howparse == &quot;fetch_array&quot;) {
                $rows = array();
                while ($row …</description>
    </item>
</rdf:RDF>
