1985 Ivorian parliamentary election

Parliamentary elections were held in Ivory Coast on 10 November 1985. At the time the country was a one-party state with the Democratic Party of Côte d'Ivoire – African Democratic Rally (PDCI-RDA) as the sole legal party. 546 PDCI-RDA candidates contested the 175 seats (up from 147 at the previous election). Voter turnout was reported to be just 45.7%.[1]

This article is part of a series on the
politics and government of
Ivory Coast
 Africa portal  Politics portal

Results

Party Votes % Seats
Democratic Party of Côte d'Ivoire – African Democratic Rally100175
Invalid/blank votes--
Total1,606,332100175
Source: Nohlen et al.
gollark: Eh. It's improved. Still problematic though, but I like it.
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```

References

  1. Nohlen, D, Krennerich, M & Thibaut, B (1999) Elections in Africa: A data handbook, p54 ISBN 0-19-829645-2
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.