Always private
DuckDuckGo never tracks your searches.
Learn More
You can hide this reminder in Search Settings
All regions
Argentina
Australia
Austria
Belgium (fr)
Belgium (nl)
Brazil
Bulgaria
Canada (en)
Canada (fr)
Catalonia
Chile
China
Colombia
Croatia
Czech Republic
Denmark
Estonia
Finland
France
Germany
Greece
Hong Kong
Hungary
Iceland
India (en)
Indonesia (en)
Ireland
Israel (en)
Italy
Japan
Korea
Latvia
Lithuania
Malaysia (en)
Mexico
Netherlands
New Zealand
Norway
Pakistan (en)
Peru
Philippines (en)
Poland
Portugal
Romania
Russia
Saudi Arabia
Singapore
Slovakia
Slovenia
South Africa
Spain (ca)
Spain (es)
Sweden
Switzerland (de)
Switzerland (fr)
Taiwan
Thailand (en)
Turkey
Ukraine
United Kingdom
US (English)
US (Spanish)
Vietnam (en)
Safe search: moderate
Strict
Moderate
Off
Any time
Any time
Past day
Past week
Past month
Past year
  1. stackoverflow.com

    I want to make a script, which could automatic edit a PHP file. For example, in PHP file abc.php I have this script <?php /* Data : 'Valid Data' Method : 'Yes' */ ?> And I want that, when I get data to a page via $_GET or $_POST on another page data.php, then abc.php file will get edited with new Data.Identity for replacing the old value in abc.php is single colon (Data : 'Valid Data').
  2. ohiomemory.ohiohistory.org

    The Ohio History Connection provides free access to over 1,000,000 full-text searchable pages of Ohio newspapers through Ohio Memory and the Library of Congress's Chronicling America. Our newspaper digitization program is supported by partnerships with local institutions as well as grant funding, including the National Endowment for the Humanities's National …
  3. blog.chapagain.com.np

    In this article, I will be presenting simple PHP & MySQL code to add, edit, delete and view data. This kind of system is also referred to CRUD (Create, Read, Update, Delete).. Here is a step-by-step guide on creating a CRUD system using PHP & MySQL:
  4. en.wikipedia.org

    Investment banker Frank Quattrone of Credit Suisse First Boston is convicted of obstructing justice and witness tampering. Quattrone played a significant role in the Initial Public Offerings of Amazon, Netscape, Intuit and other Internet companies.; Polish Prime Minister Leszek Miller resigns one day after Poland becomes a member of the European Union.His government was the most unpopular of ...
  5. en.wikipedia.org

    Voters in the Dominican Republic go to the polls to elect a new president; with 79% of the vote counted, former president Leonel Fernández is declared the winner.; The Israeli army announces its intention to demolish hundreds of additional houses in the Rafah refugee camp in the Gaza Strip along the border with Egypt after the Supreme Court rejects a petition against the demolitions.
  6. Can’t find what you’re looking for?

    Help us improve DuckDuckGo searches with your feedback

  1. //Read the text of abc.php into an array, one line per entry
    $lines = file('abc.php');
    
    //Replace the third line with the new text, including your new data
    $lines[2] = "Data : '" . $some_data . "'\n";
    
    //Write the new lines into abc.php
    file_put_contents('abc.php', implode($lines));
    • http://us.php.net/manual/en/function.file.php

    • http://us.php.net/manual/en/function.file-put-contents.php

    • http://us.php.net/manual/en/function.implode.php

    --Dan Grossman

    Was this helpful?
Custom date rangeX