Meaning of mad

  1. Angry; resentful. See synonyms at angry.
  2. Suffering from a disorder of the mind; insane.
  3. Temporarily or apparently deranged by violent sensations, emotions, or ideas: mad with jealousy.
  4. Lacking restraint or reason; foolish: I was mad to have hired her in the first place.
  5. Feeling or showing strong liking or enthusiasm: mad about sports.
  6. Marked by extreme excitement, confusion, or agitation; frantic: a mad scramble for the bus.
  7. Boisterously gay; hilarious: had a mad time.
  8. Affected by rabies; rabid.

Comments

Popular posts from this blog

FuN+PHP

String Variable in PHPString variables are used for values that contains characters. In this chapter we are going to look at the most common functions and operators used to manipulate strings in PHP. After we create a string we can manipulate it. A string can be used directly in a function or it can be stored in a variable. Below, the PHP script assigns the text "Hello World" to a string variable called $txt: The output of the code above will be: Hello World