Welcome to the IMTalk - Internet Marketing & SEO Forum.
  • Login:
+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    proseocontent's Avatar
    proseocontent is offline IM & SEO Small Talker proseocontent has a spectacular aura about proseocontent has a spectacular aura about proseocontent has a spectacular aura about
    Join Date
    May 2011
    Location
    germany
    Posts
    903
    Thanks Given
    48
    Thanked 222 Times in 173 Posts

    Searching for a programmer for flatfile database

    I'm searching for a PHP programmer because i need a script which does not use a normal mysql database. Instead of that i need a flatfile.

    Is here any programmer for that available?

    Or if you know a cunstruction kit for drag and drop i would be cool if you can post here.

  2. #2
    Nemanja's Avatar
    Nemanja is offline IMTalk.org Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute
    Join Date
    Jun 2010
    Location
    www
    Posts
    4,870
    Thanks Given
    703
    Thanked 3,044 Times in 1,247 Posts
    If you are talking about writing into a file then please take a look at this:
    PHP Tutorial - File Write

    and this:
    PHP: file_put_contents - Manual

  3. The Following User Says Thank You to Nemanja For This Useful Post:


  4. #3
    proseocontent's Avatar
    proseocontent is offline IM & SEO Small Talker proseocontent has a spectacular aura about proseocontent has a spectacular aura about proseocontent has a spectacular aura about
    Join Date
    May 2011
    Location
    germany
    Posts
    903
    Thanks Given
    48
    Thanked 222 Times in 173 Posts
    Yes, i'm talking about writing in a file. I need a php script like a address manager. I have no time at the moment to create one for my self because i'm very busy with other projects. It is not for a address manager of course :-)

    It should be like a real database with write, delete, show ....

  5. The Following User Says Thank You to proseocontent For This Useful Post:


  6. #4
    elvispm is offline IM & SEO Quiet One elvispm is on a distinguished road
    Join Date
    May 2012
    Posts
    5
    Thanks Given
    0
    Thanked 0 Times in 0 Posts
    use sqlite, writing your own database on a flatfile does not make sense, except you do not have max few hundreds of records. in that case, just use file_put_contents, file_get_contents, serialize,unserialize

  7. #5
    proseocontent's Avatar
    proseocontent is offline IM & SEO Small Talker proseocontent has a spectacular aura about proseocontent has a spectacular aura about proseocontent has a spectacular aura about
    Join Date
    May 2011
    Location
    germany
    Posts
    903
    Thanks Given
    48
    Thanked 222 Times in 173 Posts
    Yes, i know how it works, but i have no time at the moment to write such a script like i need myself. I want to outsource this. For that i need a programmer

  8. The Following User Says Thank You to proseocontent For This Useful Post:


  9. #6
    hacxx is offline Banned hacxx is on a distinguished road
    Join Date
    Aug 2016
    Posts
    19
    Thanks Given
    17
    Thanked 0 Times in 0 Posts

    Searching for a programmer for plaintext database

    Quote Originally Posted by proseocontent View Post
    Yes, i know how it works, but i have no time at the moment to write such a script like i need myself. I want to outsource this. For that i need a programmer
    Use this tool... (PHP Teacher V1)
    https://files.doxbin.gg/Vnp1Mw8N.html

    Select...
    04) Post text to php and save remotely to a file
    05) Search email in a file

    Adjust to your needs.

    04) Wiil save data into db.txt from php (not flatfile, plaintext)
    Code:
    <?php
    $text = $_POST["text"];
    echo "Text added to the database.";
    $data = $text.PHP_EOL;
    $fp = fopen('db.txt', 'a');
    fwrite($fp, $data);
    ?>
    
    Example: 1.php?text=My text to add to db.txt
    05) Will search db.txt from php
    Code:
    <?php
    $searchthis = $_GET['email'];
    $matches = array();
    
    $handle = @fopen("db.txt", "r");
    if ($handle)
    {
        while (!feof($handle))
        {
            $buffer = fgets($handle);
            if(strpos($buffer, $searchthis) !== FALSE)
                $matches[] = $buffer;
        }
        fclose($handle);
    }
    
    //show results:
    echo "<center>";
    print_r($matches);
    echo "</center>"
    ?>
    
    Example: [email protected]


 

Similar Threads

  1. What is the command to create MySQL database using PHP and MySWQ?
    By hirephp in forum Programming, Scripting, Database, Testing, Debugging...
    Replies: 4
    Last Post: 05-14-2012, 06:33 PM
  2. Programmer needed (php & moneybookers integration)
    By thetravelbug in forum Services
    Replies: 7
    Last Post: 03-04-2012, 06:55 PM
  3. 750 million email database for sale
    By sonu703 in forum Products
    Replies: 0
    Last Post: 12-02-2011, 09:49 AM
  4. Setting max length of a string returned from database
    By Hajoless in forum Programming, Scripting, Database, Testing, Debugging...
    Replies: 2
    Last Post: 11-07-2011, 06:12 AM
  5. Replies: 0
    Last Post: 08-03-2011, 02:37 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts