Jump to content

sntshkmr60

Members
  • Posts

    5
  • Joined

  • Last visited

About sntshkmr60

  • Birthday 10/12/1996

Previous Fields

  • Languages
    PHP, JavaScript, HTML, CSS

Contact Methods

  • Website URL
    http://synaptik.co.cc/

Profile Information

  • Location
    Patna, India
  • Interests
    Web, Coding

sntshkmr60's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Why can't I read file.txt?
  2. I am developing the file locally with LAMPP and my source file is like this: <?php echo "The server is working"; ?><?php$file=fopen("file.txt", "r") or exit("Unable to open file!");?> In the same directory is a text file named file.txt and it has a line on text in it. The output however is only The server is working. Nothing else.
  3. Sometimes small small mistakes are very frustrating. I was doing <link rel="stylesheet/css" type="text/css" href="style.less"> but I should have been done<link rel="stylesheet/less" type="text/css" href="style.less">
  4. Shame! Its sad to know that CSS forum don't know what LESS is! I think you also not be knowing about SASS!Both LESS and SASS were made to cut down the typing. You can find more at their website and the Wikipedia pages here and here respectively Research and give answer to my question.
  5. HTML files contains: <!doctype html><html><head><link rel="stylesheet/css" type="text/css" href="style.less"><script type="text/javascript" src="less.js"></script></head> <body><h1> This is a header. </h1><p>Now this is paragraph.</p></body></html> And my LESS file contains this: h1 {font-size: 12px; /* Just trying to check */font-weight: bold;} I know so I have less file before the less.js. But I am not able to see any change in header.
×
×
  • Create New...